22 lines
499 B
TOML
22 lines
499 B
TOML
[package]
|
|
name = "api"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
axum = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tower = "0.4"
|
|
tower-http = { version = "0.5", features = ["trace", "cors"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
tonic = "0.11"
|
|
prost = "0.12"
|
|
shared_proto = { path = "../shared_proto" }
|
|
audit_logger = { path = "../shared_libs/audit_logger" }
|
|
|
|
|