Skip to content

Commit

Permalink
Update parking_lot requirement from 0.10 to 0.11
Browse files Browse the repository at this point in the history
Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version.
- [Release notes](https://github.com/Amanieu/parking_lot/releases)
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md)
- [Commits](Amanieu/parking_lot@0.10.0...0.11.1)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 12, 2021
1 parent 08db011 commit 6c9f079
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions artemis-normalized-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ artemis = { path = "../artemis", version = "^0.1.0" }
serde = "1"
serde_json = "1"
async-trait = "0.1"
parking_lot = "0.10"
parking_lot = "0.11"
flurry = "0.3"
crossbeam-epoch = "0.8"
fnv = "1"

[dev-dependencies]
artemis-test = { path = "../artemis-test" }
racetrack = "0.0.2"
tokio = { version = "0.2", features = ["full"] }
tokio = { version = "1.3", features = ["full"] }
futures = "0.3"
type-map = "0.5"
lazy_static = "1.4"
Expand Down
10 changes: 5 additions & 5 deletions artemis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ artemis-codegen-proc-macro = { path = "../artemis-codegen-proc-macro", version =
serde = { version = "1", features = ["derive"] }
serde_json = "1"
async-trait = "0.1"
parking_lot = "0.10"
parking_lot = "0.11"
bincode = "1"

futures = { version = "0.3", optional = true }
Expand All @@ -39,8 +39,8 @@ wasm-bindgen-test = "0.3"
artemis-build = { path = "../artemis-build" }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "0.2", features = ["full"] }
tokio-test = "0.2"
tokio = { version = "1.3", features = ["full"] }
tokio-test = "0.4"

[target.'cfg(any(doc, target_arch = "wasm32"))'.dependencies]
wasm-bindgen = "0.2"
Expand All @@ -50,5 +50,5 @@ serde-wasm-bindgen = "0.1"
web-sys = { version = "0.3", features = ["RequestInit", "Window", "Request"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { version = "0.2", optional = true, features = ["rt-core"] }
reqwest = { version = "0.10", optional = true, features = ["json"] }
tokio = { version = "1.3", optional = true, features = ["rt"] }
reqwest = { version = "0.11", optional = true, features = ["json"] }

0 comments on commit 6c9f079

Please sign in to comment.