ontoref-code/examples/catalog-extension/02-sidecar/sidecar/Cargo.toml

21 lines
613 B
TOML
Raw Normal View History

[package]
name = "example-mail-sidecar"
version = "0.1.0"
edition = "2021"
publish = false
# Standalone — not part of ontoref's workspace.
[workspace]
[[bin]]
name = "example-mail-sidecar"
path = "src/main.rs"
[dependencies]
axum = { version = "0.7", default-features = false, features = ["http1", "tokio", "json"] }
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "net", "signal"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }