🚀 meta: initial commit

This commit is contained in:
2023-11-29 12:34:54 -05:00
commit 5e5be16ee0
8 changed files with 1442 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "custom-backend-http"
version = "0.1.0"
edition = "2021"
[dependencies]
atom_syndication = "0.12.2"
axum = { version = "0.7.1", default-features = false, features = ["json", "tokio", "http2"] }
error-stack = "0.4.1"
redb = "1.4.0"
serde = { version = "1.0.193", features = ["derive"] }
thiserror = "1.0.50"
tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread", "rt", "net"] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }