Alphabetize dependencies in Cargo.toml
This commit is contained in:
parent
95362c8a99
commit
af2fb99ad9
24
Cargo.toml
24
Cargo.toml
|
|
@ -6,23 +6,23 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["rt-multi-thread"]}
|
||||
axum = { version = "0.7", default_features = false, features = ["http1", "form", "tokio"] }
|
||||
argon2 = { version = "0.5", features = ["password-hash", "std"] }
|
||||
askama = "0.12"
|
||||
askama_axum = "0.4"
|
||||
tower-http = { version = "0.5", features = ["fs", "trace"] }
|
||||
axum = { version = "0.7", default_features = false, features = ["http1", "form", "tokio"] }
|
||||
axum-extra = { version = "0.9", features = ["cookie"] }
|
||||
base64 = "0.21"
|
||||
chrono = { version = "0.4.34", features = ["serde"] }
|
||||
deadpool-postgres = { version = "0.12", features = ["rt_tokio_1"] }
|
||||
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
||||
thiserror = "1.0"
|
||||
argon2 = { version = "0.5", features = ["password-hash", "std"] }
|
||||
digest = "0.10"
|
||||
hmac = "0.12"
|
||||
http = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
base64 = "0.21"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
digest = "0.10"
|
||||
chrono = { version = "0.4.34", features = ["serde"] }
|
||||
axum-extra = { version = "0.9", features = ["cookie"] }
|
||||
http = "1.0"
|
||||
thiserror = "1.0"
|
||||
tokio = { version = "1", features = ["rt-multi-thread"]}
|
||||
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4"] }
|
||||
tower-http = { version = "0.5", features = ["fs", "trace"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", default_features = false, features = ["std", "fmt", "ansi"] }
|
||||
|
|
|
|||
Loading…
Reference in New Issue