manage features in workspaces cargo.toml file

This commit is contained in:
Jemilu Mohammed
2023-11-30 16:17:38 +00:00
committed by Karolin Varner
parent 181154b470
commit ca35e47d2a
5 changed files with 17 additions and 17 deletions

View File

@@ -16,7 +16,6 @@ members = [
tag-prefix = ""
[workspace.dependencies]
arbitrary = "1.3.2"
libfuzzer-sys = "0.4"
stacker = "0.1.15"
doc-comment = "0.3.3"
@@ -27,12 +26,13 @@ lazy_static = "1.4.0"
thiserror = "1.0.40"
paste = "1.0.12"
env_logger = "0.10.0"
serde = "1.0.163"
toml = "0.7.4"
mio = "0.8.6"
clap = "4.3.0"
static_assertions = "1.1.0"
log = { version = "0.4.17" }
anyhow = { version = "1.0.71" }
libsodium-sys-stable= { version = "1.19.28" }
oqs-sys = {default-features = false, version = "0.8" }
clap = { version = "4.3.0", features = ["derive"] }
serde = { version = "1.0.163", features = ["derive"] }
arbitrary = { version = "1.3.2", features = ["derive"] }
anyhow = { version = "1.0.71", features = ["backtrace"] }
mio = { version = "0.8.6", features = ["net", "os-poll"] }
libsodium-sys-stable= { version = "1.19.28", features = ["use-pkg-config"] }
oqs-sys = { version = "0.8", default-features = false, features = ['classic_mceliece', 'kyber'] }