fix(deps): update all non-major dependencies

This commit is contained in:
renovate[bot] 2022-07-04 01:45:33 +00:00 committed by GitHub
parent 7e48259a9a
commit f792f99964
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

12
Cargo.lock generated
View File

@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]] [[package]]
name = "axum" name = "axum"
version = "0.5.10" version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db018aeacdb84550c2c6c5a1c1f553f2a330294222f45c1dbe24f0b3d2320c01" checksum = "c2cc6e8e8c993cb61a005fab8c1e5093a29199b7253b05a6883999312935c1ff"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum-core", "axum-core",
@ -1241,18 +1241,18 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.137" version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1" checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.137" version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be" checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -4,7 +4,7 @@ version = "0.0.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
axum = { version = "0.5.10", features = ["multipart"] } axum = { version = "0.5.11", features = ["multipart"] }
axum-auth = "0.2.0" axum-auth = "0.2.0"
base64 = "0.13.0" base64 = "0.13.0"
byte-unit = "4.0.14" byte-unit = "4.0.14"
@ -12,7 +12,7 @@ futures = "0.3.21"
hyper = { version = "0.14.19", features = ["full"] } hyper = { version = "0.14.19", features = ["full"] }
log = "0.4.17" log = "0.4.17"
crypto-utils = { version = "0.4.0", features = ["jwt"] } crypto-utils = { version = "0.4.0", features = ["jwt"] }
serde = { version = "1.0.137", features = ["derive"] } serde = { version = "1.0.138", features = ["derive"] }
thiserror = "1.0.31" thiserror = "1.0.31"
tower-http = { version = "0.3.4", features = ["full"] } tower-http = { version = "0.3.4", features = ["full"] }
homedisk-database = { path = "../database" } homedisk-database = { path = "../database" }

View File

@ -11,9 +11,9 @@ database = ["crypto-utils", "hex", "sqlx"]
thiserror = "1.0.31" thiserror = "1.0.31"
uuid = "1.1.2" uuid = "1.1.2"
anyhow = "1.0.58" anyhow = "1.0.58"
serde = { version = "1.0.137", features = ["derive"] } serde = { version = "1.0.138", features = ["derive"] }
zeroize = { version = "1.5.6", features = ["derive"] } zeroize = { version = "1.5.6", features = ["derive"] }
axum = { version = "0.5.10", optional = true } axum = { version = "0.5.11", optional = true }
toml = { version = "0.5.9", optional = true } toml = { version = "0.5.9", optional = true }
dirs = { version = "4.0.0", optional = true } dirs = { version = "4.0.0", optional = true }
crypto-utils = { version = "0.4.0", features = ["sha"], optional = true } crypto-utils = { version = "0.4.0", features = ["sha"], optional = true }