I am still alive in case you were wondering
This commit is contained in:
parent
1e0c7f5041
commit
4de6254f08
18 changed files with 628 additions and 345 deletions
28
Cargo.toml
28
Cargo.toml
|
@ -4,22 +4,26 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
axum = { version = "0.6.20", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing"] }
|
||||
eyre = "0.6.8"
|
||||
figment = { version = "0.10.11", features = ["env", "toml"] }
|
||||
axum = { version = "0.7.5", default-features = false, features = ["http1", "json", "macros", "matched-path", "tokio", "tower-log", "tracing"] }
|
||||
axum-extra = { version = "0.9.3", features = ["async-read-body"] }
|
||||
bytes = "1.6.0"
|
||||
eyre = "0.6.12"
|
||||
figment = { version = "0.10.15", features = ["env", "toml"] }
|
||||
futures-util = { version = "0.3.30", default-features = false }
|
||||
hex = "0.4.3"
|
||||
http = "0.2.9"
|
||||
serde = { version = "1.0.189", features = ["derive"] }
|
||||
http = "1.1.0"
|
||||
http-body-util = "0.1.1"
|
||||
mime = "0.3.17"
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
sha2 = "0.10.8"
|
||||
sqlx = { version = "0.7.3", features = ["runtime-tokio", "postgres", "uuid"] }
|
||||
thiserror = "1.0.51"
|
||||
tokio = { version = "1.33.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
|
||||
sqlx = { version = "0.7.4", features = ["runtime-tokio", "postgres", "uuid"] }
|
||||
thiserror = "1.0.58"
|
||||
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
|
||||
tokio-util = { version = "0.7.10", features = ["io"] }
|
||||
tower-http = { version = "0.4.4", features = ["trace"] }
|
||||
tracing = "0.1.37"
|
||||
tracing-subscriber = "0.3.17"
|
||||
ulid = { version = "1.1.0", features = ["uuid", "serde"] }
|
||||
tower-http = { version = "0.5.2", 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.7.0"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue