diff --git a/eden/hg-server/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml b/eden/hg-server/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml index 8ccd5a85b2ee9..cac0de77c5d96 100644 --- a/eden/hg-server/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml +++ b/eden/hg-server/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml @@ -8,7 +8,7 @@ cpython = { version = "0.5", default-features = false } cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } minibytes = { path = "../../../../lib/minibytes" } renderdag = { path = "../../../../lib/renderdag" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" [features] python2 = ["cpython/python27-sys", "cpython_ext/python2"] diff --git a/eden/hg-server/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml b/eden/hg-server/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml index ffd7db2baf3ae..ce942b7db0a01 100644 --- a/eden/hg-server/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml +++ b/eden/hg-server/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml @@ -11,7 +11,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.5", default-features = false } edenapi_types = { path = "../../../../lib/edenapi/types" } futures = { version = "0.3.5", features = ["async-await", "compat"] } -parking_lot = "0.11.2" +parking_lot = "0.12.0" progress = { path = "../../../../lib/progress" } pyprogress = { path = "../pyprogress" } pyconfigparser = { path = "../pyconfigparser" } diff --git a/eden/hg-server/edenscmnative/bindings/modules/pytracing/Cargo.toml b/eden/hg-server/edenscmnative/bindings/modules/pytracing/Cargo.toml index ecca6e6e43e62..3dc6d7c621c94 100644 --- a/eden/hg-server/edenscmnative/bindings/modules/pytracing/Cargo.toml +++ b/eden/hg-server/edenscmnative/bindings/modules/pytracing/Cargo.toml @@ -13,7 +13,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.5", default-features = false } lazy_static = "1" mincode = { path = "../../../../lib/mincode" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" python27-sys = { version = "0.5", optional = true } python3-sys = { version = "0.5", optional = true } serde_json = "1" diff --git a/eden/hg-server/edenscmnative/bindings/modules/pytreestate/Cargo.toml b/eden/hg-server/edenscmnative/bindings/modules/pytreestate/Cargo.toml index e9b99f8a1ec1c..c8a4c449ee807 100644 --- a/eden/hg-server/edenscmnative/bindings/modules/pytreestate/Cargo.toml +++ b/eden/hg-server/edenscmnative/bindings/modules/pytreestate/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" anyhow = "1.0.20" cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.5", default-features = false } -parking_lot = "0.11.2" +parking_lot = "0.12.0" treestate = { path = "../../../../lib/treestate" } [features] diff --git a/eden/hg-server/lib/blackbox/Cargo.toml b/eden/hg-server/lib/blackbox/Cargo.toml index 31ef1320fae79..c130454dd6d5f 100644 --- a/eden/hg-server/lib/blackbox/Cargo.toml +++ b/eden/hg-server/lib/blackbox/Cargo.toml @@ -14,7 +14,7 @@ byteorder = "1.3" indexedlog = { path = "../indexedlog" } lazy_static = "1.0" libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } serde_alt = { path = "serde_alt" } serde_cbor = "0.11" diff --git a/eden/hg-server/lib/checkout/Cargo.toml b/eden/hg-server/lib/checkout/Cargo.toml index 99a140975586f..5265be5642c28 100644 --- a/eden/hg-server/lib/checkout/Cargo.toml +++ b/eden/hg-server/lib/checkout/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" anyhow = "1.0.51" futures = { version = "0.3.13", features = ["async-await", "compat"] } manifest = { path = "../manifest", features = ["for-tests"] } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pathmatcher = { path = "../pathmatcher" } revisionstore = { path = "../revisionstore" } tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } diff --git a/eden/hg-server/lib/configparser/Cargo.toml b/eden/hg-server/lib/configparser/Cargo.toml index 10078b1f1a517..1681e612bd7e0 100644 --- a/eden/hg-server/lib/configparser/Cargo.toml +++ b/eden/hg-server/lib/configparser/Cargo.toml @@ -37,7 +37,7 @@ zstd = { version = "=0.8.0+zstd.1.4.9", optional = true } [dev-dependencies] lazy_static = "1.0" minibench = { path = "../minibench" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tempdir = "0.3" [features] diff --git a/eden/hg-server/lib/cpython-ext/Cargo.toml b/eden/hg-server/lib/cpython-ext/Cargo.toml index eb17324c53557..ae93474e4c33e 100644 --- a/eden/hg-server/lib/cpython-ext/Cargo.toml +++ b/eden/hg-server/lib/cpython-ext/Cargo.toml @@ -11,7 +11,7 @@ encoding = { path = "../encoding" } io = { path = "../io" } lazy_static = "1.0" libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } python27-sys = { version = "0.7", optional = true } python3-sys = { version = "0.7", optional = true } serde = { version = "1.0.126", features = ["derive", "rc"] } diff --git a/eden/hg-server/lib/dag/Cargo.toml b/eden/hg-server/lib/dag/Cargo.toml index 169c68fa5fe96..b9dbb56b4076f 100644 --- a/eden/hg-server/lib/dag/Cargo.toml +++ b/eden/hg-server/lib/dag/Cargo.toml @@ -34,7 +34,7 @@ indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] } itertools = "0.10.3" minibytes = { path = "../minibytes" } nonblocking = { path = "../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } quickcheck = { version = "1.0", optional = true } serde = { version = "1.0.126", features = ["derive", "rc"] } tempfile = { version = "3.2", optional = true } diff --git a/eden/hg-server/lib/dag/gitdag/Cargo.toml b/eden/hg-server/lib/dag/gitdag/Cargo.toml index cfdba370d8b9f..4e9d7e01217c7 100644 --- a/eden/hg-server/lib/dag/gitdag/Cargo.toml +++ b/eden/hg-server/lib/dag/gitdag/Cargo.toml @@ -9,5 +9,5 @@ anyhow = "1.0.51" dag = { path = ".." } git2 = "0.13" nonblocking = { path = "../../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tracing = "0.1.29" diff --git a/eden/hg-server/lib/hg-metrics/Cargo.toml b/eden/hg-server/lib/hg-metrics/Cargo.toml index 2d40b840243b7..31cfd00d22ae2 100644 --- a/eden/hg-server/lib/hg-metrics/Cargo.toml +++ b/eden/hg-server/lib/hg-metrics/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" [dependencies] once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } diff --git a/eden/hg-server/lib/hgcommands/Cargo.toml b/eden/hg-server/lib/hgcommands/Cargo.toml index ae2d80262f34e..2aec0ddb990ff 100644 --- a/eden/hg-server/lib/hgcommands/Cargo.toml +++ b/eden/hg-server/lib/hgcommands/Cargo.toml @@ -27,7 +27,7 @@ hgtime = { path = "../hgtime" } indexedlog = { path = "../indexedlog" } libc = "0.2.98" mincode = { path = "../mincode" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } procinfo = { path = "../procinfo" } progress-model = { path = "../progress/model" } progress-render = { path = "../progress/render" } diff --git a/eden/hg-server/lib/hgcommits/Cargo.toml b/eden/hg-server/lib/hgcommits/Cargo.toml index 9586bca20cae1..879d18d963336 100644 --- a/eden/hg-server/lib/hgcommits/Cargo.toml +++ b/eden/hg-server/lib/hgcommits/Cargo.toml @@ -13,7 +13,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] } gitdag = { path = "../dag/gitdag" } metalog = { path = "../metalog" } minibytes = { path = "../minibytes", features = ["frombytes"] } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } revlogindex = { path = "../revlogindex" } serde = { version = "1.0.126", features = ["derive", "rc"] } streams = { path = "../streams" } diff --git a/eden/hg-server/lib/http-client/Cargo.toml b/eden/hg-server/lib/http-client/Cargo.toml index 3e2a3c6ac91ba..05dd7525f8a9b 100644 --- a/eden/hg-server/lib/http-client/Cargo.toml +++ b/eden/hg-server/lib/http-client/Cargo.toml @@ -17,7 +17,7 @@ env_logger = "0.7" futures = { version = "0.3.13", features = ["async-await", "compat"] } http = "0.2" once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } paste = "1.0" pin-project = "0.4.28" regex = "1.5.4" diff --git a/eden/hg-server/lib/io/Cargo.toml b/eden/hg-server/lib/io/Cargo.toml index d0b0d5e1fbc14..0d43bed2b105a 100644 --- a/eden/hg-server/lib/io/Cargo.toml +++ b/eden/hg-server/lib/io/Cargo.toml @@ -9,6 +9,6 @@ edition = "2021" atty = "0.2" configparser = { path = "../configparser" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pipe = "0.2" streampager = { version = "0.10", default-features = false } diff --git a/eden/hg-server/lib/manifest-tree/Cargo.toml b/eden/hg-server/lib/manifest-tree/Cargo.toml index a1fb53e38965d..7d0f777cc4afd 100644 --- a/eden/hg-server/lib/manifest-tree/Cargo.toml +++ b/eden/hg-server/lib/manifest-tree/Cargo.toml @@ -15,7 +15,7 @@ anyhow = "1.0.51" bytes = { version = "1.1", features = ["serde"] } manifest = { path = "../manifest" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"], optional = true } +parking_lot = { version = "0.12.0", features = ["send_guard"], optional = true } pathmatcher = { path = "../pathmatcher" } quickcheck = { version = "1.0", optional = true } rand = { version = "0.8", features = ["small_rng"], optional = true } @@ -27,7 +27,7 @@ types = { path = "../types" } [dev-dependencies] manifest = { path = "../manifest", features = ["for-tests"], default-features = false } minibench = { path = "../minibench" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } quickcheck = "1.0" rand = { version = "0.8", features = ["small_rng"] } rand_chacha = "0.3" diff --git a/eden/hg-server/lib/progress/model/Cargo.toml b/eden/hg-server/lib/progress/model/Cargo.toml index f9a1e3005f60e..6a2041e52142a 100644 --- a/eden/hg-server/lib/progress/model/Cargo.toml +++ b/eden/hg-server/lib/progress/model/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] arc-swap = "1.1" once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } paste = "1.0" tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tracing = "0.1.29" diff --git a/eden/hg-server/lib/revisionstore/Cargo.toml b/eden/hg-server/lib/revisionstore/Cargo.toml index 572b183e7e6c7..4949da05463d0 100644 --- a/eden/hg-server/lib/revisionstore/Cargo.toml +++ b/eden/hg-server/lib/revisionstore/Cargo.toml @@ -30,7 +30,7 @@ mincode = { path = "../mincode" } minibytes = { path = "../minibytes", features = ["frombytes"] } mpatch = { path = "../mpatch" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } progress = { path = "../progress" } quickcheck = "1.0" rand = { version = "0.8", features = ["small_rng"] } diff --git a/eden/hg-server/lib/revlogindex/Cargo.toml b/eden/hg-server/lib/revlogindex/Cargo.toml index f6ce41ad30270..5251508eb90bd 100644 --- a/eden/hg-server/lib/revlogindex/Cargo.toml +++ b/eden/hg-server/lib/revlogindex/Cargo.toml @@ -13,7 +13,7 @@ indexedlog = { path = "../indexedlog" } lz4-pyframe = { path = "../lz4-pyframe" } minibytes = { path = "../minibytes" } nonblocking = { path = "../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } radixbuf = { path = "../radixbuf" } thiserror = "1.0.29" util = { path = "../util" } diff --git a/eden/hg-server/lib/tracing-collector/Cargo.toml b/eden/hg-server/lib/tracing-collector/Cargo.toml index 6919b53a7b798..f0e267bfa59f3 100644 --- a/eden/hg-server/lib/tracing-collector/Cargo.toml +++ b/eden/hg-server/lib/tracing-collector/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] } libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] } tracing = "0.1.29" diff --git a/eden/hg-server/lib/tracing-runtime-callsite/Cargo.toml b/eden/hg-server/lib/tracing-runtime-callsite/Cargo.toml index c0cf78851e22c..902fdf9162b1f 100644 --- a/eden/hg-server/lib/tracing-runtime-callsite/Cargo.toml +++ b/eden/hg-server/lib/tracing-runtime-callsite/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tracing = "0.1.29" [dev-dependencies] diff --git a/eden/hg-server/lib/workingcopy/Cargo.toml b/eden/hg-server/lib/workingcopy/Cargo.toml index a646b290e1bd3..9f1b63571cb5c 100644 --- a/eden/hg-server/lib/workingcopy/Cargo.toml +++ b/eden/hg-server/lib/workingcopy/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0.51" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pathmatcher = { path = "../pathmatcher" } thiserror = "1.0.29" treestate = { path = "../treestate" } diff --git a/eden/hg-server/lib/zstore/Cargo.toml b/eden/hg-server/lib/zstore/Cargo.toml index ce1b406c21236..1419a3895a16d 100644 --- a/eden/hg-server/lib/zstore/Cargo.toml +++ b/eden/hg-server/lib/zstore/Cargo.toml @@ -10,7 +10,7 @@ lazy_static = "1.0" lru-cache = "0.1.2" mincode = { path = "../mincode" } minibytes = { path = "../minibytes", features = ["frombytes"] } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } sha-1 = "0.8" tracing = "0.1.29" diff --git a/eden/mononoke/megarepo_api/Cargo.toml b/eden/mononoke/megarepo_api/Cargo.toml index 009c8f6f51263..7beced4dd7541 100644 --- a/eden/mononoke/megarepo_api/Cargo.toml +++ b/eden/mononoke/megarepo_api/Cargo.toml @@ -36,7 +36,7 @@ metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" } mononoke_api = { version = "0.1.0", path = "../mononoke_api" } mononoke_types = { version = "0.1.0", path = "../mononoke_types" } mutable_renames = { version = "0.1.0", path = "../mutable_renames" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } reachabilityindex = { version = "0.1.0", path = "../reachabilityindex" } repo_factory = { version = "0.1.0", path = "../repo_factory" } repo_identity = { version = "0.1.0", path = "../repo_attributes/repo_identity" } diff --git a/eden/mononoke/repo_factory/Cargo.toml b/eden/mononoke/repo_factory/Cargo.toml index 78faff0980935..ec785522a915e 100644 --- a/eden/mononoke/repo_factory/Cargo.toml +++ b/eden/mononoke/repo_factory/Cargo.toml @@ -37,7 +37,7 @@ mercurial_mutation = { version = "0.1.0", path = "../mercurial/mutation" } metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" } mutable_renames = { version = "0.1.0", path = "../mutable_renames" } newfilenodes = { version = "0.1.0", path = "../newfilenodes" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } phases = { version = "0.1.0", path = "../phases" } pushrebase_mutation_mapping = { version = "0.1.0", path = "../pushrebase_mutation_mapping" } readonlyblob = { version = "0.1.0", path = "../blobstore/readonlyblob" } diff --git a/eden/mononoke/segmented_changelog/Cargo.toml b/eden/mononoke/segmented_changelog/Cargo.toml index e733f73db1008..4908518dc674b 100644 --- a/eden/mononoke/segmented_changelog/Cargo.toml +++ b/eden/mononoke/segmented_changelog/Cargo.toml @@ -35,7 +35,7 @@ mercurial_types = { version = "0.1.0", path = "../mercurial/types" } metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" } mincode = { version = "0.1.0", path = "../../scm/lib/mincode" } mononoke_types = { version = "0.1.0", path = "../mononoke_types" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } phases = { version = "0.1.0", path = "../phases" } rand = { version = "0.8", features = ["small_rng"] } reloader = { version = "0.1.0", path = "../common/reloader" } diff --git a/eden/scm/edenscmnative/bindings/modules/pymanifest/Cargo.toml b/eden/scm/edenscmnative/bindings/modules/pymanifest/Cargo.toml index 9504a57120d4c..7859bc1912903 100644 --- a/eden/scm/edenscmnative/bindings/modules/pymanifest/Cargo.toml +++ b/eden/scm/edenscmnative/bindings/modules/pymanifest/Cargo.toml @@ -9,7 +9,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.7", default-features = false } manifest = { path = "../../../../lib/manifest" } manifest-tree = { path = "../../../../lib/manifest-tree" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" pathmatcher = { path = "../../../../lib/pathmatcher" } pypathmatcher = { path = "../pypathmatcher" } types = { path = "../../../../lib/types" } diff --git a/eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml b/eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml index d642bb2a7e725..da2c9e6653dbd 100644 --- a/eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml +++ b/eden/scm/edenscmnative/bindings/modules/pyrenderdag/Cargo.toml @@ -8,7 +8,7 @@ cpython = { version = "0.7", default-features = false } cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } minibytes = { path = "../../../../lib/minibytes" } renderdag = { path = "../../../../lib/renderdag" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" [features] python2 = ["cpython/python27-sys", "cpython_ext/python2"] diff --git a/eden/scm/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml b/eden/scm/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml index 38fb2c8f926ee..85b5577f0b079 100644 --- a/eden/scm/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml +++ b/eden/scm/edenscmnative/bindings/modules/pyrevisionstore/Cargo.toml @@ -11,7 +11,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.7", default-features = false } io = { path = "../../../../lib/io" } minibytes = { path = "../../../../lib/minibytes" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" pyconfigparser = { path = "../pyconfigparser" } revisionstore = { path = "../../../../lib/revisionstore" } storemodel = { path = "../../../../lib/storemodel" } diff --git a/eden/scm/edenscmnative/bindings/modules/pytracing/Cargo.toml b/eden/scm/edenscmnative/bindings/modules/pytracing/Cargo.toml index add62a4e0540c..7362da7bffdfc 100644 --- a/eden/scm/edenscmnative/bindings/modules/pytracing/Cargo.toml +++ b/eden/scm/edenscmnative/bindings/modules/pytracing/Cargo.toml @@ -13,7 +13,7 @@ cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.7", default-features = false } lazy_static = "1" mincode = { path = "../../../../lib/mincode" } -parking_lot = "0.11.2" +parking_lot = "0.12.0" python27-sys = { version = "0.7", optional = true } python3-sys = { version = "0.7", optional = true } serde_json = "1" diff --git a/eden/scm/edenscmnative/bindings/modules/pytreestate/Cargo.toml b/eden/scm/edenscmnative/bindings/modules/pytreestate/Cargo.toml index 371a2f2661195..dbfebb2af1f09 100644 --- a/eden/scm/edenscmnative/bindings/modules/pytreestate/Cargo.toml +++ b/eden/scm/edenscmnative/bindings/modules/pytreestate/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" anyhow = "1.0.20" cpython_ext = { path = "../../../../lib/cpython-ext", default-features = false } cpython = { version = "0.7", default-features = false } -parking_lot = "0.11.2" +parking_lot = "0.12.0" pathmatcher = { path = "../../../../lib/pathmatcher" } pypathmatcher = { path = "../pypathmatcher" } treestate = { path = "../../../../lib/treestate" } diff --git a/eden/scm/lib/backingstore/Cargo.toml b/eden/scm/lib/backingstore/Cargo.toml index d0befa2fe2f7c..0d15d27755458 100644 --- a/eden/scm/lib/backingstore/Cargo.toml +++ b/eden/scm/lib/backingstore/Cargo.toml @@ -19,7 +19,7 @@ libc = "0.2.98" log = { version = "0.4.14", features = ["kv_unstable", "kv_unstable_std"] } manifest = { version = "0.1.0", path = "../manifest" } manifest-tree = { version = "0.1.0", path = "../manifest-tree" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } revisionstore = { version = "0.1.0", path = "../revisionstore" } tracing = "0.1.29" tracing-collector = { version = "0.1.0", path = "../tracing-collector" } diff --git a/eden/scm/lib/blackbox/Cargo.toml b/eden/scm/lib/blackbox/Cargo.toml index daff7fd13bcb4..0ab9b7f4adc03 100644 --- a/eden/scm/lib/blackbox/Cargo.toml +++ b/eden/scm/lib/blackbox/Cargo.toml @@ -15,7 +15,7 @@ byteorder = "1.3" indexedlog = { version = "0.1.0", path = "../indexedlog" } lazy_static = "1.0" libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } serde_alt = { version = "0.1.0", path = "serde_alt" } serde_cbor = "0.11" diff --git a/eden/scm/lib/checkout/Cargo.toml b/eden/scm/lib/checkout/Cargo.toml index 0423b817189b9..1f739e4cbe3da 100644 --- a/eden/scm/lib/checkout/Cargo.toml +++ b/eden/scm/lib/checkout/Cargo.toml @@ -11,7 +11,7 @@ configmodel = { version = "0.1.0", path = "../configmodel" } futures = { version = "0.3.13", features = ["async-await", "compat"] } manifest = { version = "0.1.0", path = "../manifest", features = ["for-tests"] } minibytes = { version = "0.1.0", path = "../minibytes" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pathmatcher = { version = "0.1.0", path = "../pathmatcher" } progress-model = { version = "0.1.0", path = "../progress/model" } status = { version = "0.1.0", path = "../status" } diff --git a/eden/scm/lib/configparser/Cargo.toml b/eden/scm/lib/configparser/Cargo.toml index b04548f34ac70..36b57c298aae3 100644 --- a/eden/scm/lib/configparser/Cargo.toml +++ b/eden/scm/lib/configparser/Cargo.toml @@ -41,7 +41,7 @@ zstd = { version = "=0.8.0+zstd.1.4.9", optional = true } [dev-dependencies] lazy_static = "1.0" minibench = { version = "0.1.0", path = "../minibench" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tempdir = "0.3" tempfile = "3.2" diff --git a/eden/scm/lib/cpython-ext/Cargo.toml b/eden/scm/lib/cpython-ext/Cargo.toml index dfdebb889b863..b453a11b7e3d2 100644 --- a/eden/scm/lib/cpython-ext/Cargo.toml +++ b/eden/scm/lib/cpython-ext/Cargo.toml @@ -12,7 +12,7 @@ encoding = { version = "0.1.0", path = "../encoding" } io = { version = "0.1.0", path = "../io" } libc = "0.2.98" once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } python27-sys = { version = "0.7", optional = true } python3-sys = { version = "0.7", optional = true } serde = { version = "1.0.126", features = ["derive", "rc"] } diff --git a/eden/scm/lib/dag/Cargo.toml b/eden/scm/lib/dag/Cargo.toml index 7b036a1e6c635..28493a76d8544 100644 --- a/eden/scm/lib/dag/Cargo.toml +++ b/eden/scm/lib/dag/Cargo.toml @@ -37,7 +37,7 @@ itertools = "0.10.3" mincode = { version = "0.1.0", path = "../mincode" } minibytes = { version = "0.1.0", path = "../minibytes" } nonblocking = { version = "0.1.0", path = "../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } quickcheck = { version = "1.0", optional = true } rand = { version = "0.8", features = ["small_rng"] } serde = { version = "1.0.126", features = ["derive", "rc"] } diff --git a/eden/scm/lib/dag/gitdag/Cargo.toml b/eden/scm/lib/dag/gitdag/Cargo.toml index c91231ec89f7d..ab21142f3bd63 100644 --- a/eden/scm/lib/dag/gitdag/Cargo.toml +++ b/eden/scm/lib/dag/gitdag/Cargo.toml @@ -10,5 +10,5 @@ anyhow = "1.0.51" dag = { version = "0.1.0", path = ".." } git2 = "0.13" nonblocking = { version = "0.1.0", path = "../../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tracing = "0.1.29" diff --git a/eden/scm/lib/edenapi/Cargo.toml b/eden/scm/lib/edenapi/Cargo.toml index cfbcada6cfc59..d6e7a18a26278 100644 --- a/eden/scm/lib/edenapi/Cargo.toml +++ b/eden/scm/lib/edenapi/Cargo.toml @@ -22,7 +22,7 @@ itertools = "0.10.3" metrics = { version = "0.1.0", path = "../metrics" } minibytes = { version = "0.1.0", path = "../minibytes" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } percent-encoding = "2.1" pprint = { version = "0.1.0", path = "../pprint" } progress-model = { version = "0.1.0", path = "../progress/model" } diff --git a/eden/scm/lib/hg-metrics/Cargo.toml b/eden/scm/lib/hg-metrics/Cargo.toml index 0ac7b36a6779f..ca79f4b2a34e2 100644 --- a/eden/scm/lib/hg-metrics/Cargo.toml +++ b/eden/scm/lib/hg-metrics/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } diff --git a/eden/scm/lib/hgcommands/Cargo.toml b/eden/scm/lib/hgcommands/Cargo.toml index c8ae68f6e4dd3..cc966e0572703 100644 --- a/eden/scm/lib/hgcommands/Cargo.toml +++ b/eden/scm/lib/hgcommands/Cargo.toml @@ -33,7 +33,7 @@ libc = "0.2.98" metrics-render = { version = "0.1.0", path = "../metrics/render" } mincode = { version = "0.1.0", path = "../mincode" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } procinfo = { version = "0.1.0", path = "../procinfo" } progress-model = { version = "0.1.0", path = "../progress/model" } progress-render = { version = "0.1.0", path = "../progress/render" } diff --git a/eden/scm/lib/hgcommits/Cargo.toml b/eden/scm/lib/hgcommits/Cargo.toml index a9baa93f2e22e..33ea1f9e65fee 100644 --- a/eden/scm/lib/hgcommits/Cargo.toml +++ b/eden/scm/lib/hgcommits/Cargo.toml @@ -14,7 +14,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] } gitdag = { version = "0.1.0", path = "../dag/gitdag" } metalog = { version = "0.1.0", path = "../metalog" } minibytes = { version = "0.1.0", path = "../minibytes", features = ["frombytes"] } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } refencode = { version = "0.1.0", path = "../refencode" } revlogindex = { version = "0.1.0", path = "../revlogindex" } serde = { version = "1.0.126", features = ["derive", "rc"] } diff --git a/eden/scm/lib/http-client/Cargo.toml b/eden/scm/lib/http-client/Cargo.toml index 09f8178753282..08d80e73c89a9 100644 --- a/eden/scm/lib/http-client/Cargo.toml +++ b/eden/scm/lib/http-client/Cargo.toml @@ -22,7 +22,7 @@ lru-cache = "0.1.2" maplit = "1.0" once_cell = "1.8" openssl = "0.10.35" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } paste = "1.0" pin-project = "0.4.28" regex = "1.5.4" diff --git a/eden/scm/lib/io/Cargo.toml b/eden/scm/lib/io/Cargo.toml index c945acb2533e5..354c7335cd899 100644 --- a/eden/scm/lib/io/Cargo.toml +++ b/eden/scm/lib/io/Cargo.toml @@ -11,6 +11,6 @@ atty = "0.2" configmodel = { version = "0.1.0", path = "../configmodel" } configparser = { version = "0.1.0", path = "../configparser" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pipe = "0.2" streampager = { version = "0.10", default-features = false } diff --git a/eden/scm/lib/manifest-tree/Cargo.toml b/eden/scm/lib/manifest-tree/Cargo.toml index eeeed1c4a22ba..a5a0519b7cbef 100644 --- a/eden/scm/lib/manifest-tree/Cargo.toml +++ b/eden/scm/lib/manifest-tree/Cargo.toml @@ -19,7 +19,7 @@ futures = { version = "0.3.13", features = ["async-await", "compat"] } futures-batch = "0.6" manifest = { version = "0.1.0", path = "../manifest" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"], optional = true } +parking_lot = { version = "0.12.0", features = ["send_guard"], optional = true } pathmatcher = { version = "0.1.0", path = "../pathmatcher" } progress-model = { version = "0.1.0", path = "../progress/model" } quickcheck = { version = "1.0", optional = true } @@ -33,7 +33,7 @@ types = { version = "0.1.0", path = "../types" } [dev-dependencies] manifest = { version = "0.1.0", path = "../manifest", features = ["for-tests"], default-features = false } minibench = { version = "0.1.0", path = "../minibench" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } quickcheck = "1.0" rand = { version = "0.8", features = ["small_rng"] } rand_chacha = "0.3" diff --git a/eden/scm/lib/metalog/Cargo.toml b/eden/scm/lib/metalog/Cargo.toml index 87aa4b56e8cc4..71245ee9cd046 100644 --- a/eden/scm/lib/metalog/Cargo.toml +++ b/eden/scm/lib/metalog/Cargo.toml @@ -12,7 +12,7 @@ indexedlog = { version = "0.1.0", path = "../indexedlog" } lazy_static = "1.0" mincode = { version = "0.1.0", path = "../mincode" } minibytes = { version = "0.1.0", path = "../minibytes" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } tracing = "0.1.29" types = { version = "0.1.0", path = "../types" } diff --git a/eden/scm/lib/progress/model/Cargo.toml b/eden/scm/lib/progress/model/Cargo.toml index 167e3c1eed151..ac88b06f77e27 100644 --- a/eden/scm/lib/progress/model/Cargo.toml +++ b/eden/scm/lib/progress/model/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] arc-swap = "1.1" once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } paste = "1.0" tokio = { version = "1.15", features = ["full", "test-util", "tracing"] } tracing = "0.1.29" diff --git a/eden/scm/lib/revisionstore/Cargo.toml b/eden/scm/lib/revisionstore/Cargo.toml index da46cf6b62c08..6051956eac0a1 100644 --- a/eden/scm/lib/revisionstore/Cargo.toml +++ b/eden/scm/lib/revisionstore/Cargo.toml @@ -33,7 +33,7 @@ mincode = { version = "0.1.0", path = "../mincode" } minibytes = { version = "0.1.0", path = "../minibytes", features = ["frombytes"] } mpatch = { version = "0.1.0", path = "../mpatch" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } progress-model = { version = "0.1.0", path = "../progress/model" } quickcheck = "1.0" rand = { version = "0.8", features = ["small_rng"] } diff --git a/eden/scm/lib/revlogindex/Cargo.toml b/eden/scm/lib/revlogindex/Cargo.toml index b986ada85498f..1fd324c95001a 100644 --- a/eden/scm/lib/revlogindex/Cargo.toml +++ b/eden/scm/lib/revlogindex/Cargo.toml @@ -14,7 +14,7 @@ indexedlog = { version = "0.1.0", path = "../indexedlog" } lz4-pyframe = { version = "0.1.0", path = "../lz4-pyframe" } minibytes = { version = "0.1.0", path = "../minibytes" } nonblocking = { version = "0.1.0", path = "../nonblocking" } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } radixbuf = { version = "0.1.0", path = "../radixbuf" } thiserror = "1.0.29" util = { version = "0.1.0", path = "../util" } diff --git a/eden/scm/lib/runlog/Cargo.toml b/eden/scm/lib/runlog/Cargo.toml index 567a4e736905f..b2035fb8da44a 100644 --- a/eden/scm/lib/runlog/Cargo.toml +++ b/eden/scm/lib/runlog/Cargo.toml @@ -11,7 +11,7 @@ chrono = { version = "0.4", features = ["clock", "serde", "std"], default-featur fs2 = "0.4" hg-http = { version = "0.1.0", path = "../hg-http" } libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } progress-model = { version = "0.1.0", path = "../progress/model" } rand = { version = "0.8", features = ["small_rng"] } repo = { version = "0.1.0", path = "../repo" } diff --git a/eden/scm/lib/tracing-collector/Cargo.toml b/eden/scm/lib/tracing-collector/Cargo.toml index df29f628ab5e2..76005f14be35d 100644 --- a/eden/scm/lib/tracing-collector/Cargo.toml +++ b/eden/scm/lib/tracing-collector/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] indexmap = { version = "1.8.0", features = ["rayon", "serde-1"] } libc = "0.2.98" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] } tracing = "0.1.29" diff --git a/eden/scm/lib/tracing-runtime-callsite/Cargo.toml b/eden/scm/lib/tracing-runtime-callsite/Cargo.toml index 419db09cb8370..54bd21f82de18 100644 --- a/eden/scm/lib/tracing-runtime-callsite/Cargo.toml +++ b/eden/scm/lib/tracing-runtime-callsite/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } tracing = "0.1.29" [dev-dependencies] diff --git a/eden/scm/lib/tracing-sampler/Cargo.toml b/eden/scm/lib/tracing-sampler/Cargo.toml index a27406a2f455e..925839160aac6 100644 --- a/eden/scm/lib/tracing-sampler/Cargo.toml +++ b/eden/scm/lib/tracing-sampler/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] configmodel = { version = "0.1.0", path = "../configmodel" } once_cell = "1.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } serde_json = { version = "1.0.64", features = ["float_roundtrip", "unbounded_depth"] } tracing = "0.1.29" diff --git a/eden/scm/lib/workingcopy/Cargo.toml b/eden/scm/lib/workingcopy/Cargo.toml index eac3aeaae8e30..11a7007ff4b7e 100644 --- a/eden/scm/lib/workingcopy/Cargo.toml +++ b/eden/scm/lib/workingcopy/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] anyhow = "1.0.51" crossbeam = "0.8" -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } pathmatcher = { version = "0.1.0", path = "../pathmatcher" } thiserror = "1.0.29" treestate = { version = "0.1.0", path = "../treestate" } diff --git a/eden/scm/lib/zstore/Cargo.toml b/eden/scm/lib/zstore/Cargo.toml index b99a043715498..217013a709516 100644 --- a/eden/scm/lib/zstore/Cargo.toml +++ b/eden/scm/lib/zstore/Cargo.toml @@ -11,7 +11,7 @@ lazy_static = "1.0" lru-cache = "0.1.2" mincode = { version = "0.1.0", path = "../mincode" } minibytes = { version = "0.1.0", path = "../minibytes", features = ["frombytes"] } -parking_lot = { version = "0.11.2", features = ["send_guard"] } +parking_lot = { version = "0.12.0", features = ["send_guard"] } serde = { version = "1.0.126", features = ["derive", "rc"] } sha-1 = "0.8" tracing = "0.1.29"