diff --git a/.changelog/unreleased/bug-fixes/2100-win-build.md b/.changelog/unreleased/bug-fixes/2100-win-build.md new file mode 100644 index 0000000000..7048bd8572 --- /dev/null +++ b/.changelog/unreleased/bug-fixes/2100-win-build.md @@ -0,0 +1,2 @@ +- Fix Windows build by disabling RocksDB jemalloc feature. + ([\#2100](https://github.com/anoma/namada/pull/2100)) \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index ae3e6ae08d..77ca95428e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -114,7 +114,7 @@ regex = "1.4.5" reqwest = "0.11.4" ripemd = "0.1" rlimit = "0.5.4" -rocksdb = {version = "0.21.0", features = ['zstd', 'jemalloc'], default-features = false} +rocksdb = {version = "0.21.0", features = ['zstd'], default-features = false} rpassword = "5.0.1" serde = {version = "1.0.125", features = ["derive"]} serde_bytes = "0.11.5"