Compare commits
1 commit
renovate/a
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
a88977af94 |
2 changed files with 7 additions and 14 deletions
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -322,13 +322,10 @@ checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum-core 0.5.0",
|
"axum-core 0.5.0",
|
||||||
"bytes",
|
"bytes",
|
||||||
"form_urlencoded",
|
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"http 1.2.0",
|
"http 1.2.0",
|
||||||
"http-body",
|
"http-body",
|
||||||
"http-body-util",
|
"http-body-util",
|
||||||
"hyper",
|
|
||||||
"hyper-util",
|
|
||||||
"itoa",
|
"itoa",
|
||||||
"matchit 0.8.4",
|
"matchit 0.8.4",
|
||||||
"memchr",
|
"memchr",
|
||||||
|
@ -337,11 +334,7 @@ dependencies = [
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"rustversion",
|
"rustversion",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
|
||||||
"serde_path_to_error",
|
|
||||||
"serde_urlencoded",
|
|
||||||
"sync_wrapper",
|
"sync_wrapper",
|
||||||
"tokio",
|
|
||||||
"tower",
|
"tower",
|
||||||
"tower-layer",
|
"tower-layer",
|
||||||
"tower-service",
|
"tower-service",
|
||||||
|
@ -413,14 +406,14 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "axum-test"
|
name = "axum-test"
|
||||||
version = "17.1.0"
|
version = "16.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "375ec4f6db373ce6d696839249203c57049aefe1213cfa77bb2e12e10ed43d08"
|
checksum = "63e3a443d2608936a02a222da7b746eb412fede7225b3030b64fe9be99eab8dc"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert-json-diff",
|
"assert-json-diff",
|
||||||
"auto-future",
|
"auto-future",
|
||||||
"axum 0.8.1",
|
"axum 0.7.9",
|
||||||
"bytes",
|
"bytes",
|
||||||
"bytesize",
|
"bytesize",
|
||||||
"cookie",
|
"cookie",
|
||||||
|
@ -622,9 +615,9 @@ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "comrak"
|
name = "comrak"
|
||||||
version = "0.33.0"
|
version = "0.34.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "39bff2cbb80102771ca62bd2375bc6f6611dc1493373440b23aa08a155538708"
|
checksum = "1664eb8abab93a9c09d1e85df10b4de6af0b4c738f267750b211a77a771447fe"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"caseless",
|
"caseless",
|
||||||
"entities",
|
"entities",
|
||||||
|
|
|
@ -30,7 +30,7 @@ axum = { version = "0.7.5", default-features = false, features = [
|
||||||
"tracing",
|
"tracing",
|
||||||
] }
|
] }
|
||||||
axum-extra = { version = "0.10.0", features = ["typed-header"] }
|
axum-extra = { version = "0.10.0", features = ["typed-header"] }
|
||||||
comrak = { version = "0.33.0", default-features = false }
|
comrak = { version = "0.34.0", default-features = false }
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
envy = { path = "crates/envy" }
|
envy = { path = "crates/envy" }
|
||||||
flate2 = "1.0.30"
|
flate2 = "1.0.30"
|
||||||
|
@ -80,7 +80,7 @@ yarte = { version = "0.15.7", features = ["json"] }
|
||||||
yarte_helpers = "0.15.8"
|
yarte_helpers = "0.15.8"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum-test = "17.0.0"
|
axum-test = "16.0.0"
|
||||||
flate2 = "1.0.30"
|
flate2 = "1.0.30"
|
||||||
httpdate = "1.0.3"
|
httpdate = "1.0.3"
|
||||||
insta = { version = "1.39.0", features = ["json"] }
|
insta = { version = "1.39.0", features = ["json"] }
|
||||||
|
|
Loading…
Reference in a new issue