mirror of
https://github.com/instructkr/claw-code.git
synced 2026-04-03 17:34:48 +08:00
17 lines
462 B
TOML
17 lines
462 B
TOML
[package]
|
|
name = "api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
runtime = { path = "../runtime" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json.workspace = true
|
|
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|