15 lines
383 B
TOML
15 lines
383 B
TOML
|
|
[package]
|
||
|
|
name = "http-api-bindings"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
async-trait.workspace = true
|
||
|
|
reqwest = { workspace = true, features = ["json"] }
|
||
|
|
serde = { workspace = true, features = ["derive"] }
|
||
|
|
serde_json = "1.0.105"
|
||
|
|
tabby-inference = { version = "0.1.0", path = "../tabby-inference" }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tokio = { workspace = true, features = ["full"] }
|