mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
75 lines
2.1 KiB
Diff
75 lines
2.1 KiB
Diff
diff --git a/Cargo.lock b/Cargo.lock
|
|
index e92c0ed0..63bb0996 100644
|
|
--- a/Cargo.lock
|
|
+++ b/Cargo.lock
|
|
@@ -1700,7 +1700,7 @@ dependencies = [
|
|
"obkv",
|
|
"once_cell",
|
|
"ordered-float",
|
|
- "pest 2.1.3 (git+https://github.com/pest-parser/pest.git?rev=51fd1d49f1041f7839975664ef71fe15c7dcaf67)",
|
|
+ "pest",
|
|
"pest_derive",
|
|
"rayon",
|
|
"roaring",
|
|
@@ -1939,15 +1939,6 @@ version = "2.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
|
|
|
|
-[[package]]
|
|
-name = "pest"
|
|
-version = "2.1.3"
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
-checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
|
|
-dependencies = [
|
|
- "ucd-trie",
|
|
-]
|
|
-
|
|
[[package]]
|
|
name = "pest"
|
|
version = "2.1.3"
|
|
@@ -1962,7 +1953,7 @@ version = "2.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
|
|
dependencies = [
|
|
- "pest 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
+ "pest",
|
|
"pest_generator",
|
|
]
|
|
|
|
@@ -1972,7 +1963,7 @@ version = "2.1.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
|
|
dependencies = [
|
|
- "pest 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
+ "pest",
|
|
"pest_meta",
|
|
"proc-macro2 1.0.27",
|
|
"quote 1.0.9",
|
|
@@ -1986,7 +1977,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
|
|
dependencies = [
|
|
"maplit",
|
|
- "pest 2.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
+ "pest",
|
|
"sha-1 0.8.2",
|
|
]
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index a1dca038..405f210a 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -1,8 +1,9 @@
|
|
[workspace]
|
|
-members = [
|
|
- "meilisearch-http",
|
|
- "meilisearch-error",
|
|
-]
|
|
+members = ["meilisearch-http", "meilisearch-error"]
|
|
+resolver = "2"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
+
|
|
+[patch.crates-io]
|
|
+pest = { git = "https://github.com/pest-parser/pest.git", rev = "51fd1d49f1041f7839975664ef71fe15c7dcaf67" }
|