[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"