23 lines
615 B
TOML
23 lines
615 B
TOML
[package]
|
|
name = "api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
poise = { workspace = true }
|
|
|
|
utoipa-actix-web = "0.1"
|
|
actix-web = "4"
|
|
actix-cors = "0.7"
|
|
utoipa-scalar = { version = "0.3", features = ["actix-web"] }
|
|
utoipa = "5"
|
|
tracing-actix-web = { version = "0.7", features = ["opentelemetry_0_29"] }
|
|
|
|
config = { path = "../../libs/config" }
|
|
database = { path = "../../libs/database" }
|
|
clickhouse_pool = { path = "../../libs/clickhouse_pool" }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|