18 lines
489 B
TOML
18 lines
489 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 = "1"
|
|
telemetry = { path = "../telemetry" }
|
|
tokio = { version = "1", features = ["io-util", "macros", "net", "rt-multi-thread", "time"] }
|
|
|
|
[lints]
|
|
workspace = true
|