Corrected for cargo update.

This commit is contained in:
2025-04-23 11:12:15 -04:00
parent ce10c73eae
commit cb69c4d55a
3 changed files with 23 additions and 284 deletions

View File

@ -6,14 +6,12 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.4"
axum-extra = { version = "0.9.2", features = ["cookie-signed"] }
chrono = { version = "0.4.40", features = ["now"] }
clap = { version = "4.5.1", features = ["derive"] }
rand = "0.8.5"
tokio = { version = "1.36.0", features = ["full"] }
tower-cookies = "0.11.0"
uuid = { version = "1.8.0", features = ["v4"] }
axum = ">=0.8.0"
chrono = { version = ">=0.4.40", features = ["now"] }
clap = { version = ">=4.5.1", features = ["derive"] }
tokio = { version = ">=1.36.0", features = ["full"] }
tower-cookies = ">=0.11.0"
uuid = { version = ">=1.8.0", features = ["v4"] }
[dev-dependencies]
tower = { version = "0.5.2", features = ["util"] }
tower = { version = ">=0.5.2", features = ["util"] }