diff --git a/Cargo.toml b/Cargo.toml index cb95cd8..b312c40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,6 +61,7 @@ uuid = "0.7" vergen = "3" walkdir = "2" zbase32 = "0.1" +sequoia-openpgp = { version = "1.17.0", default-features = false } [dependencies] hagrid-database = { workspace = true } @@ -69,7 +70,7 @@ anyhow = { workspace = true } rocket = { workspace = true, features = ["json"] } rocket_dyn_templates = { workspace = true, features = ["handlebars"] } rocket_codegen = { workspace = true } -sequoia-openpgp = { version = "=1.17.0", default-features = false, features = ["crypto-openssl"] } +sequoia-openpgp = { workspace = true, features = ["crypto-openssl"] } multipart = { workspace = true } serde = { workspace = true } serde_derive = { workspace = true } diff --git a/database/Cargo.toml b/database/Cargo.toml index b0f1dcb..c2f09db 100644 --- a/database/Cargo.toml +++ b/database/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] anyhow = { workspace = true } -sequoia-openpgp = { version = "=1.17.0", default-features = false, features = ["crypto-openssl"] } +sequoia-openpgp = { workspace = true, features = ["crypto-openssl"] } log = { workspace = true } rand = { workspace = true } serde = { workspace = true, features = ["derive"] } diff --git a/hagridctl/Cargo.toml b/hagridctl/Cargo.toml index 696cb66..af6c4da 100644 --- a/hagridctl/Cargo.toml +++ b/hagridctl/Cargo.toml @@ -7,7 +7,7 @@ edition = "2024" [dependencies] hagrid-database = { workspace = true } anyhow = { workspace = true } -sequoia-openpgp = { version = "1.17.0", default-features = false, features = ["crypto-openssl"] } +sequoia-openpgp = { workspace = true, features = ["crypto-openssl"] } multipart = { workspace = true } log = { workspace = true } rand = { workspace = true } diff --git a/tester/Cargo.toml b/tester/Cargo.toml index ffc6d27..1efe165 100644 --- a/tester/Cargo.toml +++ b/tester/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] anyhow = { workspace = true } -sequoia-openpgp = { version = "1", default-features = false, features = ["crypto-openssl"] } +sequoia-openpgp = { workspace = true, features = ["crypto-openssl"] } log = { workspace = true } rand = { workspace = true } serde = { workspace = true, features = ["derive"] }