32 lines
674 B
TOML
32 lines
674 B
TOML
[package]
|
|
name = "zhiyi-consolidate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lancedb = "0.15"
|
|
|
|
tokio = { version = "1", features = ["rt"] }
|
|
futures = "0.3"
|
|
arrow = "53"
|
|
arrow-array = "53"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
reqwest = { version = "0.12", features = ["json", "blocking"] }
|
|
|
|
# ONNX Runtime (BGE 推理)
|
|
ort = { version = "2.0.0-rc.12", features = ["load-dynamic", "ndarray"] }
|
|
ndarray = "0.15"
|
|
|
|
# 图谱 SQLite
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
tokenizers = "0.23.1"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[[bin]]
|
|
name = "zhiyi-consolidate"
|
|
path = "src/main.rs"
|