29 lines
603 B
TOML
29 lines
603 B
TOML
[package]
|
|
name = "zhiyi-consolidate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lancedb = "0.15"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
candle-core = "0.6"
|
|
candle-nn = "0.6"
|
|
candle-transformers = "0.6"
|
|
ort = { version = "2", features = ["download-binaries"] }
|
|
linfa = "0.7"
|
|
linfa-clustering = "0.7"
|
|
ndarray = "0.15"
|
|
ndarray-stats = "0.5"
|
|
statrs = "0.16"
|
|
clap = { version = "4", features = ["derive"] }
|
|
env_logger = "0.10"
|
|
log = "0.4"
|
|
prost = "0.12"
|
|
tonic = "0.10"
|
|
|
|
[[bin]]
|
|
name = "zhiyi-consolidate"
|
|
path = "src/main.rs"
|