30 lines
568 B
TOML
30 lines
568 B
TOML
[package]
|
|
name = "osiris-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Osiris HTTP server"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[[bin]]
|
|
name = "osiris"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Osiris core
|
|
osiris-core = { path = "../../lib/osiris/core" }
|
|
|
|
# Web framework
|
|
axum = "0.7"
|
|
tower = "0.4"
|
|
tower-http.workspace = true
|
|
|
|
# Core dependencies
|
|
tokio.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
anyhow.workspace = true
|
|
|
|
# Tracing
|
|
tracing.workspace = true
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|