vectordb/Cargo.toml

17 lines
398 B
TOML
Raw Normal View History

2023-06-24 20:42:22 +00:00
[package]
name = "vectordb"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
flume = "0.10.14"
oneshot = "0.1.5"
rand = "0.8.5"
2023-07-02 03:03:34 +00:00
redb = { version = "1.0.4", features = ["logging"] }
2023-07-04 22:39:17 +00:00
tracing = "0.1.37"
[dev-dependencies]
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt"] }