Skip to content

Commit c94dada

Browse files
mofeiZfacebook-github-bot
authored andcommitted
Bump parking-lot to version 0.12.0
Summary: ~~~Added new parking-lot version named parking_lot_0_12~~~ allow-large-files previous versions of parking-lot are incompatible with wasm compilation targets rustwasm/wasm-bindgen#2160 Amanieu/parking_lot#302 Reviewed By: dtolnay Differential Revision: D33985872 fbshipit-source-id: ce571ef50289fe97ff89dbf72d2c7f39fbd47758
1 parent 9728bf5 commit c94dada

File tree

55 files changed

+57
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+57
-57
lines changed

eden/hg-server/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cpython = { version = "0.5", default-features = false }
88
cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
99
minibytes = { path = "../../../../lib/minibytes" }
1010
renderdag = { path = "../../../../lib/renderdag" }
11-
parking_lot = "0.11.2"
11+
parking_lot = "0.12.0"
1212

1313
[features]
1414
python2 = ["cpython/python27-sys", "cpython_ext/python2"]

eden/hg-server/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
1111
cpython = { version = "0.5", default-features = false }
1212
edenapi_types = { path = "../../../../lib/edenapi/types" }
1313
futures = { version = "0.3.5", features = ["async-await", "compat"] }
14-
parking_lot = "0.11.2"
14+
parking_lot = "0.12.0"
1515
progress = { path = "../../../../lib/progress" }
1616
pyprogress = { path = "../pyprogress" }
1717
pyconfigparser = { path = "../pyconfigparser" }

eden/hg-server/edenscmnative/bindings/modules/pytracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
1313
cpython = { version = "0.5", default-features = false }
1414
lazy_static = "1"
1515
mincode = { path = "../../../../lib/mincode" }
16-
parking_lot = "0.11.2"
16+
parking_lot = "0.12.0"
1717
python27-sys = { version = "0.5", optional = true }
1818
python3-sys = { version = "0.5", optional = true }
1919
serde_json = "1"

eden/hg-server/edenscmnative/bindings/modules/pytreestate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
anyhow = "1.0.20"
88
cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
99
cpython = { version = "0.5", default-features = false }
10-
parking_lot = "0.11.2"
10+
parking_lot = "0.12.0"
1111
treestate = { path = "../../../../lib/treestate" }
1212

1313
[features]

eden/hg-server/lib/blackbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ byteorder = "1.3"
1414
indexedlog = { path = "../indexedlog" }
1515
lazy_static = "1.0"
1616
libc = "0.2.98"
17-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
17+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1818
serde = { version = "1.0.126", features = ["derive", "rc"] }
1919
serde_alt = { path = "serde_alt" }
2020
serde_cbor = "0.11"

eden/hg-server/lib/checkout/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
anyhow = "1.0.51"
99
futures = { version = "0.3.13", features = ["async-await", "compat"] }
1010
manifest = { path = "../manifest", features = ["for-tests"] }
11-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
11+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1212
pathmatcher = { path = "../pathmatcher" }
1313
revisionstore = { path = "../revisionstore" }
1414
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }

eden/hg-server/lib/configparser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ zstd = { version = "=0.8.0+zstd.1.4.9", optional = true }
3737
[dev-dependencies]
3838
lazy_static = "1.0"
3939
minibench = { path = "../minibench" }
40-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
40+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
4141
tempdir = "0.3"
4242

4343
[features]

eden/hg-server/lib/cpython-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ encoding = { path = "../encoding" }
1111
io = { path = "../io" }
1212
lazy_static = "1.0"
1313
libc = "0.2.98"
14-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
14+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1515
python27-sys = { version = "0.7", optional = true }
1616
python3-sys = { version = "0.7", optional = true }
1717
serde = { version = "1.0.126", features = ["derive", "rc"] }

eden/hg-server/lib/dag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] }
3434
itertools = "0.10.3"
3535
minibytes = { path = "../minibytes" }
3636
nonblocking = { path = "../nonblocking" }
37-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
37+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3838
quickcheck = { version = "1.0", optional = true }
3939
serde = { version = "1.0.126", features = ["derive", "rc"] }
4040
tempfile = { version = "3.2", optional = true }

eden/hg-server/lib/dag/gitdag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ anyhow = "1.0.51"
99
dag = { path = ".." }
1010
git2 = "0.13"
1111
nonblocking = { path = "../../nonblocking" }
12-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
12+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1313
tracing = "0.1.29"

eden/hg-server/lib/hg-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2021"
66

77
[dependencies]
88
once_cell = "1.8"
9-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
9+
parking_lot = { version = "0.12.0", features = ["send_guard"] }

eden/hg-server/lib/hgcommands/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ hgtime = { path = "../hgtime" }
2727
indexedlog = { path = "../indexedlog" }
2828
libc = "0.2.98"
2929
mincode = { path = "../mincode" }
30-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
30+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3131
procinfo = { path = "../procinfo" }
3232
progress-model = { path = "../progress/model" }
3333
progress-render = { path = "../progress/render" }

eden/hg-server/lib/hgcommits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] }
1313
gitdag = { path = "../dag/gitdag" }
1414
metalog = { path = "../metalog" }
1515
minibytes = { path = "../minibytes", features = ["frombytes"] }
16-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
16+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1717
revlogindex = { path = "../revlogindex" }
1818
serde = { version = "1.0.126", features = ["derive", "rc"] }
1919
streams = { path = "../streams" }

eden/hg-server/lib/http-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env_logger = "0.7"
1717
futures = { version = "0.3.13", features = ["async-await", "compat"] }
1818
http = "0.2"
1919
once_cell = "1.8"
20-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
20+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
2121
paste = "1.0"
2222
pin-project = "0.4.28"
2323
regex = "1.5.4"

eden/hg-server/lib/io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ edition = "2021"
99
atty = "0.2"
1010
configparser = { path = "../configparser" }
1111
once_cell = "1.8"
12-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
12+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1313
pipe = "0.2"
1414
streampager = { version = "0.10", default-features = false }

eden/hg-server/lib/manifest-tree/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ anyhow = "1.0.51"
1515
bytes = { version = "1.1", features = ["serde"] }
1616
manifest = { path = "../manifest" }
1717
once_cell = "1.8"
18-
parking_lot = { version = "0.11.2", features = ["send_guard"], optional = true }
18+
parking_lot = { version = "0.12.0", features = ["send_guard"], optional = true }
1919
pathmatcher = { path = "../pathmatcher" }
2020
quickcheck = { version = "1.0", optional = true }
2121
rand = { version = "0.8", features = ["small_rng"], optional = true }
@@ -27,7 +27,7 @@ types = { path = "../types" }
2727
[dev-dependencies]
2828
manifest = { path = "../manifest", features = ["for-tests"], default-features = false }
2929
minibench = { path = "../minibench" }
30-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
30+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3131
quickcheck = "1.0"
3232
rand = { version = "0.8", features = ["small_rng"] }
3333
rand_chacha = "0.3"

eden/hg-server/lib/progress/model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
arc-swap = "1.1"
99
once_cell = "1.8"
10-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
10+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1111
paste = "1.0"
1212
tokio = { version = "1.15", features = ["full", "test-util", "tracing"] }
1313
tracing = "0.1.29"

eden/hg-server/lib/revisionstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ mincode = { path = "../mincode" }
3030
minibytes = { path = "../minibytes", features = ["frombytes"] }
3131
mpatch = { path = "../mpatch" }
3232
once_cell = "1.8"
33-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
33+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3434
progress = { path = "../progress" }
3535
quickcheck = "1.0"
3636
rand = { version = "0.8", features = ["small_rng"] }

eden/hg-server/lib/revlogindex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ indexedlog = { path = "../indexedlog" }
1313
lz4-pyframe = { path = "../lz4-pyframe" }
1414
minibytes = { path = "../minibytes" }
1515
nonblocking = { path = "../nonblocking" }
16-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
16+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1717
radixbuf = { path = "../radixbuf" }
1818
thiserror = "1.0.29"
1919
util = { path = "../util" }

eden/hg-server/lib/tracing-collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
[dependencies]
88
indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] }
99
libc = "0.2.98"
10-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
10+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1111
serde = { version = "1.0.126", features = ["derive", "rc"] }
1212
serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] }
1313
tracing = "0.1.29"

eden/hg-server/lib/tracing-runtime-callsite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77

88
[dependencies]
99
once_cell = "1.8"
10-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
10+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1111
tracing = "0.1.29"
1212

1313
[dev-dependencies]

eden/hg-server/lib/workingcopy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
anyhow = "1.0.51"
9-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
9+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1010
pathmatcher = { path = "../pathmatcher" }
1111
thiserror = "1.0.29"
1212
treestate = { path = "../treestate" }

eden/hg-server/lib/zstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy_static = "1.0"
1010
lru-cache = "0.1.2"
1111
mincode = { path = "../mincode" }
1212
minibytes = { path = "../minibytes", features = ["frombytes"] }
13-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
13+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1414
serde = { version = "1.0.126", features = ["derive", "rc"] }
1515
sha-1 = "0.8"
1616
tracing = "0.1.29"

eden/mononoke/megarepo_api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
3636
mononoke_api = { version = "0.1.0", path = "../mononoke_api" }
3737
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
3838
mutable_renames = { version = "0.1.0", path = "../mutable_renames" }
39-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
39+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
4040
reachabilityindex = { version = "0.1.0", path = "../reachabilityindex" }
4141
repo_factory = { version = "0.1.0", path = "../repo_factory" }
4242
repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" }

eden/mononoke/repo_factory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ mercurial_mutation = { version = "0.1.0", path = "../mercurial/mutation" }
3737
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
3838
mutable_renames = { version = "0.1.0", path = "../mutable_renames" }
3939
newfilenodes = { version = "0.1.0", path = "../newfilenodes" }
40-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
40+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
4141
phases = { version = "0.1.0", path = "../phases" }
4242
pushrebase_mutation_mapping = { version = "0.1.0", path = "../pushrebase_mutation_mapping" }
4343
readonlyblob = { version = "0.1.0", path = "../blobstore/readonlyblob" }

eden/mononoke/segmented_changelog/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mercurial_types = { version = "0.1.0", path = "../mercurial/types" }
3535
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
3636
mincode = { version = "0.1.0", path = "../../scm/lib/mincode" }
3737
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
38-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
38+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3939
phases = { version = "0.1.0", path = "../phases" }
4040
rand = { version = "0.8", features = ["small_rng"] }
4141
reloader = { version = "0.1.0", path = "../common/reloader" }

eden/scm/edenscmnative/bindings/modules/pymanifest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
99
cpython = { version = "0.7", default-features = false }
1010
manifest = { path = "../../../../lib/manifest" }
1111
manifest-tree = { path = "../../../../lib/manifest-tree" }
12-
parking_lot = "0.11.2"
12+
parking_lot = "0.12.0"
1313
pathmatcher = { path = "../../../../lib/pathmatcher" }
1414
pypathmatcher = { path = "../pypathmatcher" }
1515
types = { path = "../../../../lib/types" }

eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cpython = { version = "0.7", default-features = false }
88
cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
99
minibytes = { path = "../../../../lib/minibytes" }
1010
renderdag = { path = "../../../../lib/renderdag" }
11-
parking_lot = "0.11.2"
11+
parking_lot = "0.12.0"
1212

1313
[features]
1414
python2 = ["cpython/python27-sys", "cpython_ext/python2"]

eden/scm/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
1111
cpython = { version = "0.7", default-features = false }
1212
io = { path = "../../../../lib/io" }
1313
minibytes = { path = "../../../../lib/minibytes" }
14-
parking_lot = "0.11.2"
14+
parking_lot = "0.12.0"
1515
pyconfigparser = { path = "../pyconfigparser" }
1616
revisionstore = { path = "../../../../lib/revisionstore" }
1717
storemodel = { path = "../../../../lib/storemodel" }

eden/scm/edenscmnative/bindings/modules/pytracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
1313
cpython = { version = "0.7", default-features = false }
1414
lazy_static = "1"
1515
mincode = { path = "../../../../lib/mincode" }
16-
parking_lot = "0.11.2"
16+
parking_lot = "0.12.0"
1717
python27-sys = { version = "0.7", optional = true }
1818
python3-sys = { version = "0.7", optional = true }
1919
serde_json = "1"

eden/scm/edenscmnative/bindings/modules/pytreestate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
anyhow = "1.0.20"
88
cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false }
99
cpython = { version = "0.7", default-features = false }
10-
parking_lot = "0.11.2"
10+
parking_lot = "0.12.0"
1111
pathmatcher = { path = "../../../../lib/pathmatcher" }
1212
pypathmatcher = { path = "../pypathmatcher" }
1313
treestate = { path = "../../../../lib/treestate" }

eden/scm/lib/backingstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libc = "0.2.98"
1919
log = { version = "0.4.14", features = ["kv_unstable", "kv_unstable_std"] }
2020
manifest = { version = "0.1.0", path = "../manifest" }
2121
manifest-tree = { version = "0.1.0", path = "../manifest-tree" }
22-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
22+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
2323
revisionstore = { version = "0.1.0", path = "../revisionstore" }
2424
tracing = "0.1.29"
2525
tracing-collector = { version = "0.1.0", path = "../tracing-collector" }

eden/scm/lib/blackbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ byteorder = "1.3"
1515
indexedlog = { version = "0.1.0", path = "../indexedlog" }
1616
lazy_static = "1.0"
1717
libc = "0.2.98"
18-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
18+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1919
serde = { version = "1.0.126", features = ["derive", "rc"] }
2020
serde_alt = { version = "0.1.0", path = "serde_alt" }
2121
serde_cbor = "0.11"

eden/scm/lib/checkout/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ configmodel = { version = "0.1.0", path = "../configmodel" }
1111
futures = { version = "0.3.13", features = ["async-await", "compat"] }
1212
manifest = { version = "0.1.0", path = "../manifest", features = ["for-tests"] }
1313
minibytes = { version = "0.1.0", path = "../minibytes" }
14-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
14+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1515
pathmatcher = { version = "0.1.0", path = "../pathmatcher" }
1616
progress-model = { version = "0.1.0", path = "../progress/model" }
1717
status = { version = "0.1.0", path = "../status" }

eden/scm/lib/configparser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ zstd = { version = "=0.8.0+zstd.1.4.9", optional = true }
4141
[dev-dependencies]
4242
lazy_static = "1.0"
4343
minibench = { version = "0.1.0", path = "../minibench" }
44-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
44+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
4545
tempdir = "0.3"
4646
tempfile = "3.2"
4747

eden/scm/lib/cpython-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ encoding = { version = "0.1.0", path = "../encoding" }
1212
io = { version = "0.1.0", path = "../io" }
1313
libc = "0.2.98"
1414
once_cell = "1.8"
15-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
15+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1616
python27-sys = { version = "0.7", optional = true }
1717
python3-sys = { version = "0.7", optional = true }
1818
serde = { version = "1.0.126", features = ["derive", "rc"] }

eden/scm/lib/dag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ itertools = "0.10.3"
3737
mincode = { version = "0.1.0", path = "../mincode" }
3838
minibytes = { version = "0.1.0", path = "../minibytes" }
3939
nonblocking = { version = "0.1.0", path = "../nonblocking" }
40-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
40+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
4141
quickcheck = { version = "1.0", optional = true }
4242
rand = { version = "0.8", features = ["small_rng"] }
4343
serde = { version = "1.0.126", features = ["derive", "rc"] }

eden/scm/lib/dag/gitdag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ anyhow = "1.0.51"
1010
dag = { version = "0.1.0", path = ".." }
1111
git2 = "0.13"
1212
nonblocking = { version = "0.1.0", path = "../../nonblocking" }
13-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
13+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1414
tracing = "0.1.29"

eden/scm/lib/edenapi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ itertools = "0.10.3"
2222
metrics = { version = "0.1.0", path = "../metrics" }
2323
minibytes = { version = "0.1.0", path = "../minibytes" }
2424
once_cell = "1.8"
25-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
25+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
2626
percent-encoding = "2.1"
2727
pprint = { version = "0.1.0", path = "../pprint" }
2828
progress-model = { version = "0.1.0", path = "../progress/model" }

eden/scm/lib/hg-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77

88
[dependencies]
99
once_cell = "1.8"
10-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
10+
parking_lot = { version = "0.12.0", features = ["send_guard"] }

eden/scm/lib/hgcommands/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ libc = "0.2.98"
3333
metrics-render = { version = "0.1.0", path = "../metrics/render" }
3434
mincode = { version = "0.1.0", path = "../mincode" }
3535
once_cell = "1.8"
36-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
36+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
3737
procinfo = { version = "0.1.0", path = "../procinfo" }
3838
progress-model = { version = "0.1.0", path = "../progress/model" }
3939
progress-render = { version = "0.1.0", path = "../progress/render" }

eden/scm/lib/hgcommits/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] }
1414
gitdag = { version = "0.1.0", path = "../dag/gitdag" }
1515
metalog = { version = "0.1.0", path = "../metalog" }
1616
minibytes = { version = "0.1.0", path = "../minibytes", features = ["frombytes"] }
17-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
17+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1818
refencode = { version = "0.1.0", path = "../refencode" }
1919
revlogindex = { version = "0.1.0", path = "../revlogindex" }
2020
serde = { version = "1.0.126", features = ["derive", "rc"] }

eden/scm/lib/http-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ lru-cache = "0.1.2"
2222
maplit = "1.0"
2323
once_cell = "1.8"
2424
openssl = "0.10.35"
25-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
25+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
2626
paste = "1.0"
2727
pin-project = "0.4.28"
2828
regex = "1.5.4"

eden/scm/lib/io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ atty = "0.2"
1111
configmodel = { version = "0.1.0", path = "../configmodel" }
1212
configparser = { version = "0.1.0", path = "../configparser" }
1313
once_cell = "1.8"
14-
parking_lot = { version = "0.11.2", features = ["send_guard"] }
14+
parking_lot = { version = "0.12.0", features = ["send_guard"] }
1515
pipe = "0.2"
1616
streampager = { version = "0.10", default-features = false }

0 commit comments

Comments
 (0)