move repos into monorepo
This commit is contained in:
29
bin/osiris/Cargo.toml
Normal file
29
bin/osiris/Cargo.toml
Normal file
@@ -0,0 +1,29 @@
|
||||
[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"] }
|
||||
Reference in New Issue
Block a user