diff --git a/apps/Cargo.toml b/apps/Cargo.toml index 272aef9679..8a783d4dc5 100644 --- a/apps/Cargo.toml +++ b/apps/Cargo.toml @@ -121,7 +121,6 @@ regex.workspace = true reqwest.workspace = true ripemd.workspace = true rlimit.workspace = true -rocksdb.workspace = true rpassword.workspace = true serde_bytes.workspace = true serde_json = {workspace = true, features = ["raw_value"]} @@ -144,10 +143,15 @@ tracing-subscriber = { workspace = true, features = ["std", "json", "ansi", "tra tracing.workspace = true winapi.workspace = true zeroize.workspace = true - warp = "0.3.2" bytes = "1.1.0" +[target.'cfg(not(windows))'.dependencies] +rocksdb = { workspace = true, features = ['jemalloc'] } # jemalloc is not supported on windows + +[target.'cfg(windows)'.dependencies] +rocksdb = { workspace = true } + [dev-dependencies] assert_matches = "1.5.0" namada = {path = "../shared", default-features = false, features = ["testing", "wasm-runtime"]}