move repos into monorepo

This commit is contained in:
Timur Gordon
2025-11-13 20:44:00 +01:00
commit 4b23e5eb7f
204 changed files with 33737 additions and 0 deletions

29
bin/osiris/Cargo.toml Normal file
View 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"] }