Skip to content

Commit cb2a4a0

Browse files
committed
Clean up dependencies, bump version.
1 parent 942b720 commit cb2a4a0

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

Cargo.toml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,29 @@ repository = "https://github.com/brotskydotcom/dbus-secret-service.git"
77
keywords = ["secret-service", "password", "linux", "dbus"]
88
license = "MIT OR Apache-2.0"
99
name = "dbus-secret-service"
10-
version = "4.0.3"
10+
version = "4.1.0"
1111
edition = "2021"
1212
rust-version = "1.70"
1313
exclude = [".github/"]
1414

1515
[features]
1616
vendored = ["dbus/vendored", "openssl?/vendored"]
17-
crypto-rust = ["dep:aes", "dep:block-padding", "dep:cbc", "dep:fastrand", "dep:hkdf", "dep:sha2"]
18-
crypto-openssl = ["dep:fastrand", "dep:openssl"]
17+
crypto-rust = ["dep:aes", "dep:block-padding", "dep:cbc", "dep:fastrand", "dep:hkdf", "dep:num", "dep:once_cell", "dep:sha2"]
18+
crypto-openssl = ["dep:fastrand", "dep:num", "dep:once_cell", "dep:openssl"]
1919

2020
[dependencies]
2121
aes = { version = "0.8", optional = true }
2222
block-padding = { version = "0.3", features = ["std"], optional = true }
2323
cbc = { version = "0.1", features = ["block-padding", "alloc"], optional = true }
2424
dbus = "0.9"
2525
fastrand = { version = "2.3", optional = true }
26-
futures-util = "0.3"
2726
hkdf = { version = "0.12", optional = true }
28-
num = "0.4"
29-
once_cell = "1"
27+
num = { version = "0.4", optional = true }
28+
once_cell = { version = "1", optional = true }
3029
openssl = { version = "0.10.55", optional = true }
3130
sha2 = { version = "0.10", optional = true }
32-
zeroize = { version = "1.8.1", features = ["derive"] }
33-
34-
[dev-dependencies]
35-
test-with = { version = "0.12", default-features = false }
31+
zeroize = { version = "1.8", features = ["derive"] }
3632

3733
[package.metadata.docs.rs]
3834
features = ["crypto-rust"]
35+
targets = ["x86_64-unknown-linux-gnu"]

0 commit comments

Comments
 (0)