This commit is contained in:
2026-07-09 02:59:53 +03:00
commit 7ace048d94
817 changed files with 234289 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[package]
name = "hcie-ai"
version = "0.1.0"
edition = "2021"
[features]
default = []
ffi = []
[dependencies]
hcie-engine-api = { path = "../hcie-engine-api" }
hcie-protocol = { path = "../hcie-protocol" }
reqwest = { version = "0.12", features = ["json", "multipart", "blocking", "stream"] }
tokio = { version = "1.40", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1"
anyhow = "1.0"
futures-util = "0.3"
base64 = "0.22"
log = "0.4"
bincode = "1.3"
once_cell = "1.20"
[lib]
crate-type = ["rlib", "cdylib"]
[dev-dependencies]
rstest = "0.23"
proptest = "1.5"
approx = "0.5"