It was like that when I got here
This commit is contained in:
parent
331423d3f6
commit
18251d7f00
36 changed files with 1534 additions and 1000 deletions
29
Cargo.toml
29
Cargo.toml
|
@ -4,24 +4,31 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.7.5", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing", "query", "form"] }
|
||||
axum-extra = { version = "0.9.3", features = ["async-read-body"] }
|
||||
askama = "0.12.1"
|
||||
askama_axum = "0.4.0"
|
||||
async-trait = "0.1.83"
|
||||
axum = { version = "0.7.6", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing", "query", "form"] }
|
||||
axum-codec = { version = "0.0.13", features = ["cbor"] }
|
||||
axum-core = "0.4.5"
|
||||
axum-extra = { version = "0.9.4", features = ["async-read-body"] }
|
||||
bytes = "1.7.2"
|
||||
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "clock"] }
|
||||
eyre = "0.6.12"
|
||||
figment = { version = "0.10.19", features = ["env", "toml"] }
|
||||
http = "1.1.0"
|
||||
maud = { version = "0.26.0", features = ["axum"] }
|
||||
memory-serve = "0.4.5"
|
||||
serde = { version = "1.0.203", features = ["derive"] }
|
||||
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid"] }
|
||||
thiserror = "1.0.61"
|
||||
tokio = { version = "1.38.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
|
||||
tower-http = { version = "0.5.2", features = ["trace", "fs"] }
|
||||
memory-serve = "0.6.0"
|
||||
mime = "0.3.17"
|
||||
serde = { version = "1.0.210", features = ["derive"] }
|
||||
sqlx = { version = "0.8.2", features = ["runtime-tokio", "postgres", "uuid"] }
|
||||
thiserror = "1.0.64"
|
||||
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
|
||||
tower-http = { version = "0.6.1", features = ["trace", "fs"] }
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = "0.3.18"
|
||||
ulid = { version = "1.1.2", features = ["uuid", "serde"] }
|
||||
url = { version = "2.5.0", features = ["serde"] }
|
||||
uuid = "1.8.0"
|
||||
ulid = { version = "1.1.3", features = ["uuid", "serde"] }
|
||||
url = { version = "2.5.2", features = ["serde"] }
|
||||
uuid = "1.10.0"
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue