1
0
Fork 0

We have a web UI now, I guess

This commit is contained in:
Honbra 2024-06-09 18:29:07 +02:00
parent 75b87e7bac
commit 331423d3f6
Signed by: honbra
GPG key ID: B61CC9ADABE2D952
28 changed files with 1471 additions and 494 deletions

View file

@ -4,29 +4,24 @@ 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"] }
axum-extra = { version = "0.9.3", features = ["async-read-body", "typed-header"] }
bytes = "1.6.0"
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"] }
chrono = { version = "0.4.38", default-features = false, features = ["alloc", "clock"] }
eyre = "0.6.12"
figment = { version = "0.10.15", features = ["env", "toml"] }
futures-util = { version = "0.3.30", default-features = false }
headers = "0.4.0"
hex = "0.4.3"
figment = { version = "0.10.19", features = ["env", "toml"] }
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"
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.58"
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "fs", "io-std"] }
tokio-util = { version = "0.7.10", features = ["io"] }
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"] }
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"
uuid = "1.8.0"
[profile.release]
strip = true