Skip to content

Commit

Permalink
feat(storage): finishing rocksdb impl
Browse files Browse the repository at this point in the history
  • Loading branch information
distractedm1nd committed Dec 4, 2024
1 parent 0d54d11 commit 8d02ea8
Show file tree
Hide file tree
Showing 6 changed files with 334 additions and 172 deletions.
95 changes: 94 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ utoipa-swagger-ui = { version = "3.1", features = ["axum"] }

# database
redis = "0.24.0"
# rocksdb = { version = "0.21.0", features = ["multi-threaded-cf"] } commented until impl is finished
rocksdb = { version = "0.21.0", features = ["multi-threaded-cf"] }

# async
async-trait = "0.1.68"
Expand Down Expand Up @@ -103,6 +103,7 @@ jmt = { git = "https://github.com/deltadevsde/jmt", branch = "rehashing-circuit"
"mocks",
] }
sha2 = "0.10.8"
tempfile = "3.14.0"
auto_impl = "1.2.0"

# prism
Expand Down
5 changes: 4 additions & 1 deletion crates/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ jmt = { workspace = true }
prism-errors = { workspace = true }
prism-common = { workspace = true }
auto_impl = { workspace = true }
# rocksdb = { workspace = true }
rocksdb = { workspace = true }

[dev-dependencies]
tempfile.workspace = true
Loading

0 comments on commit 8d02ea8

Please sign in to comment.