Skip to content

Commit

Permalink
wip: storage refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
snowmead committed Sep 20, 2024
1 parent 7109854 commit 926bfdb
Show file tree
Hide file tree
Showing 11 changed files with 1,052 additions and 385 deletions.
174 changes: 170 additions & 4 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,18 @@ redis = { version = "0.25.0", features = [
"tokio-comp",
"tokio-rustls-comp",
"json",
] }
], optional = true }
rocksdb = { version = "0.22.0", features = [
"multi-threaded-cf",
], optional = true }
chrono = "0.4.31"
thiserror = "1.0.49"
async-trait = "0.1.73"
num-traits = "0.2.17"
bounded-integer = { version = "0.5.7", features = ["types", "num-traits02"] }
aquamarine = "0.3.2"
tiktoken-rs = "0.5.8"

[features]
redis = ["dep:redis"]
rocksdb = ["dep:rocksdb"]
Loading

0 comments on commit 926bfdb

Please sign in to comment.