mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-03-29 07:39:51 +00:00
31 lines
643 B
TOML
31 lines
643 B
TOML
[package]
|
|
name = "mycelium-api"
|
|
version = "0.5.4"
|
|
edition = "2021"
|
|
license-file = "../LICENSE"
|
|
readme = "../README.md"
|
|
|
|
[features]
|
|
message = ["mycelium/message"]
|
|
|
|
[dependencies]
|
|
axum = { version = "0.7.5", default-features = false, features = [
|
|
"http1",
|
|
"http2",
|
|
"json",
|
|
"query",
|
|
"tokio",
|
|
] }
|
|
base64 = "0.22.1"
|
|
tracing = "0.1.40"
|
|
tokio = { version = "1.39.3", default-features = false, features = [
|
|
"net",
|
|
"rt",
|
|
] }
|
|
mycelium = { path = "../mycelium" }
|
|
mycelium-metrics = { path = "../mycelium-metrics", features = ["prometheus"] }
|
|
serde = { version = "1.0.208", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.125"
|