feat(server): build axum web server for licensing, landing page, and updates
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
[package]
|
||||
name = "clean-copy-server"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
[dependencies]
|
||||
axum = "0.8"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
shared = { path = "../shared" }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
tower-http = { version = "0.6", features = ["fs", "catch-panic"] }
|
||||
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
|
||||
ed25519-dalek = { workspace = true }
|
||||
base64 = { workspace = true }
|
||||
hex = "0.4"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
async-stripe = { version = "0.41.0", features = ["runtime-tokio-hyper-rustls"] }
|
||||
dotenvy = "0.15"
|
||||
askama = "0.14"
|
||||
askama_web = { version = "0.14", features = ["axum-0.8", "tracing-0.1"] }
|
||||
|
||||
[dev-dependencies]
|
||||
wiremock = "0.6"
|
||||
tempfile = "3"
|
||||
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "macros"] }
|
||||
tower = { version = "0.5", features = ["util"] }
|
||||
Reference in New Issue
Block a user