diff options
Diffstat (limited to 'database/Cargo.toml')
-rw-r--r-- | database/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/database/Cargo.toml b/database/Cargo.toml new file mode 100644 index 0000000..6e5ddcf --- /dev/null +++ b/database/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "jellydb" +version = "0.1.0" +edition = "2024" + +[dependencies] +tantivy = "0.22.0" +jellycommon = { path = "../common" } +serde = { version = "1.0.217", features = ["derive"] } +log = { workspace = true } +bincode = "2.0.0-rc.3" +redb = "2.4.0" +anyhow = "1.0.95" + +[features] +db_json = [] |