diff --git a/Cargo.toml b/Cargo.toml index fc19ed23..edfa43c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [workspace] -resolver = "2" +resolver = "3" members = [ - "cargo-credential", + "cargo-credential", "client", "cli", "macros", @@ -21,7 +21,7 @@ categories = ["os::linux-apis", "os", "api-bindings"] repository = "https://github.com/bilelmoussaoui/oo7" homepage = "https://github.com/bilelmoussaoui/oo7" license = "MIT" -rust-version = "1.85" +rust-version = "1.86" exclude = ["org.freedesktop.Secrets.xml"] [workspace.dependencies] @@ -32,6 +32,7 @@ clap = { version = "4.5", features = [ "cargo", "derive" ] } futures-channel = "0.3" futures-lite = "2.6" futures-util = "0.3" +num-bigint-dig = { version = "0.8", features = ["zeroize"] } oo7 = { path = "client", version = "0.6", default-features = false, features = ["unstable", "tracing"]} serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.48", default-features = false } diff --git a/client/Cargo.toml b/client/Cargo.toml index 1a0e9c11..bece684d 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -34,7 +34,7 @@ hkdf = { version = "0.12", optional = true } hmac = { version = "0.12", optional = true } md-5 = { version = "0.10", optional = true } num = "0.4.0" -num-bigint-dig = { version = "0.8", features = ["zeroize"] } +num-bigint-dig.workspace = true openssl = { version = "0.10", optional = true } pbkdf2 = { version = "0.12", optional = true } rand = { version = "0.9", default-features = false, features = ["thread_rng"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index bef2667c..f0991c74 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -21,7 +21,7 @@ hkdf = { version = "0.12", optional = true } libc = "0.2" nix = { version = "0.30", default-features = false, features = ["user"]} num = "0.4.0" -num-bigint-dig = { version = "0.8", features = ["zeroize"] } +num-bigint-dig.workspace = true openssl = { version = "0.10", optional = true } oo7 = { workspace = true, features = ["tokio"] } rpassword = "7.4" @@ -49,4 +49,4 @@ openssl_crypto = [ [dev-dependencies] serial_test = "3.3" -tempfile.workspace = true \ No newline at end of file +tempfile.workspace = true