Description: Fix Debian build of Rust CLI
Author: Valentin Vidic <vvidic@debian.org>
Last-Update: 2025-05-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -17,7 +17,7 @@
 openssl = { version = "0.10", optional = true }
 
 # cli
-base64 = { version = "0.21", optional = true }
+base64 = { version = "0.22", optional = true }
 clap = { version = "4", features = ["derive"], optional = true}
 
 [dev-dependencies]
@@ -29,11 +29,11 @@
 
 [lib]
 name = "glome"
-path = "src/lib.rs"
+path = "rust/src/lib.rs"
 
 [[bin]]
 name = "glome"
-path = "src/cli/bin.rs"
+path = "rust/src/cli/bin.rs"
 
 # The binary has more dependencies than the library. We allow skipping the binary and its
 # dependencies by hiding it behind a feature.
