Update rest of Cargo.toml, excepting askama, futures-lite, hyper

This commit is contained in:
Matthew Esposito 2023-12-26 17:50:56 -05:00
parent 3e3c30d7f1
commit dac059573d
No known key found for this signature in database
2 changed files with 64 additions and 36 deletions

View file

@ -14,26 +14,26 @@ clap = { version = "4.4.11", default-features = false, features = ["std", "env"]
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }
cookie = "0.18.0"
futures-lite = "1.12.0"
hyper = { version = "0.14.23", features = ["full"] }
hyper-rustls = "0.24.0"
percent-encoding = "2.2.0"
futures-lite = "1.13.0"
hyper = { version = "0.14.28", features = ["full"] }
hyper-rustls = "0.24.2"
percent-encoding = "2.3.1"
route-recognizer = "0.3.1"
serde_json = "1.0.91"
tokio = { version = "1.24.2", features = ["full"] }
time = { version = "0.3.17", features = ["local-offset"] }
url = "2.3.1"
rust-embed = { version = "6.4.2", features = ["include-exclude"] }
libflate = "1.2.0"
brotli = { version = "3.3.4", features = ["std"] }
toml = "0.7.4"
once_cell = "1.17.0"
serde_yaml = "0.9.16"
build_html = "2.2.0"
uuid = { version = "1.3.3", features = ["v4"] }
base64 = "0.21.2"
fastrand = "1.9.0"
log = "0.4.18"
serde_json = "1.0.108"
tokio = { version = "1.35.1", features = ["full"] }
time = { version = "0.3.31", features = ["local-offset"] }
url = "2.5.0"
rust-embed = { version = "8.1.0", features = ["include-exclude"] }
libflate = "2.0.0"
brotli = { version = "3.4.0", features = ["std"] }
toml = "0.8.8"
once_cell = "1.19.0"
serde_yaml = "0.9.29"
build_html = "2.4.0"
uuid = { version = "1.6.1", features = ["v4"] }
base64 = "0.21.5"
fastrand = "2.0.1"
log = "0.4.20"
pretty_env_logger = "0.5.0"
dotenvy = "0.15.7"