15 lines
401 B
TOML
15 lines
401 B
TOML
|
|
[package]
|
||
|
|
name = "cube-core"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "Shared scaffolding for cube apps: base router, healthz, tracing, graceful shutdown"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
axum = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|