2026-03-09 08:48:05 +01:00
|
|
|
[package]
|
|
|
|
|
categories = { workspace = true }
|
|
|
|
|
description = { workspace = true }
|
|
|
|
|
edition = { workspace = true }
|
|
|
|
|
keywords = { workspace = true }
|
|
|
|
|
license = { workspace = true }
|
|
|
|
|
name = "cfgsync-runtime"
|
|
|
|
|
readme = { workspace = true }
|
|
|
|
|
repository = { workspace = true }
|
|
|
|
|
version = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-03-12 08:27:44 +01:00
|
|
|
anyhow = "1"
|
|
|
|
|
axum = { default-features = false, features = ["http1", "http2", "tokio"], version = "0.7.5" }
|
|
|
|
|
cfgsync-adapter = { workspace = true }
|
|
|
|
|
cfgsync-core = { workspace = true }
|
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = { default-features = false, features = ["macros", "net", "rt-multi-thread"], version = "1" }
|
|
|
|
|
tracing = { workspace = true }
|
2026-03-09 08:48:05 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|