comparison rust/Cargo.lock @ 44305:d8d4fa9a7f18

rust-re2: add wrapper for calling Re2 from Rust This assumes that Re2 is installed following Google's guide. I am not sure how we want to integrate it in the project, but I think a follow-up patch would be more appropriate for such work. As it stands, *not* having Re2 installed results in a compilation error, which is a problem as it breaks install compatibility. Hence, this is gated behind a non-default `with-re2` compilation feature. Differential Revision: https://phab.mercurial-scm.org/D7910
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 16 Jan 2020 13:34:04 +0100
parents 4caac36c66bc
children 8f7c6656ac79
comparison
equal deleted inserted replaced
44304:2fe89bec8011 44305:d8d4fa9a7f18
41 version = "0.2.3" 41 version = "0.2.3"
42 source = "registry+https://github.com/rust-lang/crates.io-index" 42 source = "registry+https://github.com/rust-lang/crates.io-index"
43 dependencies = [ 43 dependencies = [
44 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", 44 "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
45 ] 45 ]
46
47 [[package]]
48 name = "cc"
49 version = "1.0.50"
50 source = "registry+https://github.com/rust-lang/crates.io-index"
46 51
47 [[package]] 52 [[package]]
48 name = "cfg-if" 53 name = "cfg-if"
49 version = "0.1.10" 54 version = "0.1.10"
50 source = "registry+https://github.com/rust-lang/crates.io-index" 55 source = "registry+https://github.com/rust-lang/crates.io-index"
159 [[package]] 164 [[package]]
160 name = "hg-core" 165 name = "hg-core"
161 version = "0.1.0" 166 version = "0.1.0"
162 dependencies = [ 167 dependencies = [
163 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 168 "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
169 "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
164 "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 170 "hex 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
165 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", 171 "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
172 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
166 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 173 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
167 "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", 174 "pretty_assertions 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
168 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 175 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
169 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 176 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
170 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 177 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
597 "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" 604 "checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
598 "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d" 605 "checksum autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
599 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" 606 "checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
600 "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" 607 "checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
601 "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" 608 "checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb"
609 "checksum cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = "95e28fa049fda1c330bcf9d723be7663a899c4679724b34c81e9f5a326aab8cd"
602 "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 610 "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
603 "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" 611 "checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
604 "checksum cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaf3847ab963e40c4f6dd8d6be279bdf74007ae2413786a0dcbb28c52139a95" 612 "checksum cpython 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bfaf3847ab963e40c4f6dd8d6be279bdf74007ae2413786a0dcbb28c52139a95"
605 "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" 613 "checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca"
606 "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" 614 "checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac"