-
- Downloads
remove rocksdb
Showing
- Cargo.lock 0 additions, 144 deletionsCargo.lock
- Cargo.toml 0 additions, 2 deletionsCargo.toml
- src/database.rs 2 additions, 4 deletionssrc/database.rs
- src/database/abstraction.rs 0 additions, 3 deletionssrc/database/abstraction.rs
- src/database/abstraction/rocksdb.rs 0 additions, 176 deletionssrc/database/abstraction/rocksdb.rs
- src/error.rs 0 additions, 6 deletionssrc/error.rs
- src/server_server.rs 1 addition, 1 deletionsrc/server_server.rs
- src/utils.rs 0 additions, 9 deletionssrc/utils.rs
... | @@ -26,7 +26,6 @@ ruma = { git = "https://github.com/timokoesters/ruma", rev = "a2d93500e1dbc87e70 | ... | @@ -26,7 +26,6 @@ ruma = { git = "https://github.com/timokoesters/ruma", rev = "a2d93500e1dbc87e70 |
tokio = "1.8.2" | tokio = "1.8.2" | ||
# Used for storing data permanently | # Used for storing data permanently | ||
sled = { version = "0.34.6", features = ["compression", "no_metrics"], optional = true } | sled = { version = "0.34.6", features = ["compression", "no_metrics"], optional = true } | ||
rocksdb = { version = "0.16.0", features = ["multi-threaded-cf"], optional = true } | |||
#sled = { git = "https://github.com/spacejam/sled.git", rev = "e4640e0773595229f398438886f19bca6f7326a2", features = ["compression"] } | #sled = { git = "https://github.com/spacejam/sled.git", rev = "e4640e0773595229f398438886f19bca6f7326a2", features = ["compression"] } | ||
# Used for the http request / response body type for Ruma endpoints used with reqwest | # Used for the http request / response body type for Ruma endpoints used with reqwest | ||
... | @@ -84,7 +83,6 @@ heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c7 | ... | @@ -84,7 +83,6 @@ heed = { git = "https://github.com/timokoesters/heed.git", rev = "f6f825da7fb2c7 |
[features] | [features] | ||
default = ["conduit_bin", "backend_sqlite"] | default = ["conduit_bin", "backend_sqlite"] | ||
backend_sled = ["sled"] | backend_sled = ["sled"] | ||
backend_rocksdb = ["rocksdb"] | |||
backend_sqlite = ["sqlite"] | backend_sqlite = ["sqlite"] | ||
backend_heed = ["heed", "crossbeam"] | backend_heed = ["heed", "crossbeam"] | ||
sqlite = ["rusqlite", "parking_lot", "crossbeam", "tokio/signal"] | sqlite = ["rusqlite", "parking_lot", "crossbeam", "tokio/signal"] | ||
... | ... |
src/database/abstraction/rocksdb.rs
deleted
100644 → 0
Please register or sign in to comment