mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bump r2d2 from 0.8.9 to 0.8.10 (#865)
Bumps [r2d2](https://github.com/sfackler/r2d2) from 0.8.9 to 0.8.10. - [Release notes](https://github.com/sfackler/r2d2/releases) - [Changelog](https://github.com/sfackler/r2d2/blob/master/CHANGELOG.md) - [Commits](https://github.com/sfackler/r2d2/compare/v0.8.9...v0.8.10) --- updated-dependencies: - dependency-name: r2d2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
This commit is contained in:
parent
fbadfb1208
commit
dbccf3ae75
35
Cargo.lock
generated
35
Cargo.lock
generated
|
@ -2616,17 +2616,6 @@ version = "2.0.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.11.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
||||
dependencies = [
|
||||
"instant",
|
||||
"lock_api",
|
||||
"parking_lot_core 0.8.5",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot"
|
||||
version = "0.12.1"
|
||||
|
@ -2634,21 +2623,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
||||
dependencies = [
|
||||
"lock_api",
|
||||
"parking_lot_core 0.9.3",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "parking_lot_core"
|
||||
version = "0.8.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
|
||||
dependencies = [
|
||||
"cfg-if 1.0.0",
|
||||
"instant",
|
||||
"libc",
|
||||
"redox_syscall",
|
||||
"smallvec",
|
||||
"winapi",
|
||||
"parking_lot_core",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -2928,12 +2903,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "r2d2"
|
||||
version = "0.8.9"
|
||||
version = "0.8.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "545c5bc2b880973c9c10e4067418407a0ccaa3091781d1671d46eb35107cb26f"
|
||||
checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
|
||||
dependencies = [
|
||||
"log",
|
||||
"parking_lot 0.11.2",
|
||||
"parking_lot",
|
||||
"scheduled-thread-pool",
|
||||
]
|
||||
|
||||
|
@ -3253,7 +3228,7 @@ version = "0.2.6"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "977a7519bff143a44f842fd07e80ad1329295bd71686457f18e496736f4bf9bf"
|
||||
dependencies = [
|
||||
"parking_lot 0.12.1",
|
||||
"parking_lot",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
@ -65,7 +65,7 @@ clap = { version = "^3.2", features = ["derive"] }
|
|||
|
||||
libsqlite3-sys = "0.24.2"
|
||||
rusqlite = "^0.27.0"
|
||||
r2d2 = "^0.8.9"
|
||||
r2d2 = "^0.8.10"
|
||||
r2d2_sqlite = "^0.20.0"
|
||||
|
||||
reqwest = "^0.11.11"
|
||||
|
|
|
@ -52,7 +52,7 @@ serde_json = "^1.0.81"
|
|||
|
||||
libsqlite3-sys = "0.24.2"
|
||||
rusqlite = "^0.27.0"
|
||||
r2d2 = "^0.8.9"
|
||||
r2d2 = "^0.8.10"
|
||||
r2d2_sqlite = "^0.20.0"
|
||||
|
||||
time = { version = "=0.2.27", features = ["serde", "std"] }
|
||||
|
|
Loading…
Reference in a new issue