mirror of
https://github.com/CloudNebulaProject/reddwarf.git
synced 2026-04-10 13:20:40 +00:00
28 lines
733 B
TOML
28 lines
733 B
TOML
|
|
[package]
|
||
|
|
name = "reddwarf-apiserver"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
repository.workspace = true
|
||
|
|
rust-version.workspace = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
reddwarf-core = { workspace = true }
|
||
|
|
reddwarf-storage = { workspace = true }
|
||
|
|
reddwarf-versioning = { workspace = true }
|
||
|
|
axum = { workspace = true }
|
||
|
|
tower = { workspace = true }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
hyper = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
serde_yaml = { workspace = true }
|
||
|
|
miette = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tempfile = { workspace = true }
|