comparison rust/Cargo.lock @ 44312:c18dd48cea4a

rust-pathauditor: add Rust implementation of the `pathauditor` It does not offer the same flexibility as the Python implementation, but should check incoming paths just as well. Differential Revision: https://phab.mercurial-scm.org/D7866
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 05 Feb 2020 17:05:37 +0100
parents 25ed4d8e707f
children 9ab4830e9e3d
comparison
equal deleted inserted replaced
44311:d3f776c4760e 44312:c18dd48cea4a
144 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 144 "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
145 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", 145 "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
146 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", 146 "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
147 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 147 "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
148 "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)", 148 "regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
149 "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
149 "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", 150 "twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
150 ] 151 ]
151 152
152 [[package]] 153 [[package]]
153 name = "hg-cpython" 154 name = "hg-cpython"
391 dependencies = [ 392 dependencies = [
392 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", 393 "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
393 ] 394 ]
394 395
395 [[package]] 396 [[package]]
397 name = "redox_syscall"
398 version = "0.1.56"
399 source = "registry+https://github.com/rust-lang/crates.io-index"
400
401 [[package]]
396 name = "regex" 402 name = "regex"
397 version = "1.3.3" 403 version = "1.3.3"
398 source = "registry+https://github.com/rust-lang/crates.io-index" 404 source = "registry+https://github.com/rust-lang/crates.io-index"
399 dependencies = [ 405 dependencies = [
400 "aho-corasick 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)", 406 "aho-corasick 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)",
407 name = "regex-syntax" 413 name = "regex-syntax"
408 version = "0.6.13" 414 version = "0.6.13"
409 source = "registry+https://github.com/rust-lang/crates.io-index" 415 source = "registry+https://github.com/rust-lang/crates.io-index"
410 416
411 [[package]] 417 [[package]]
418 name = "remove_dir_all"
419 version = "0.5.2"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 dependencies = [
422 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
423 ]
424
425 [[package]]
412 name = "rustc_version" 426 name = "rustc_version"
413 version = "0.2.3" 427 version = "0.2.3"
414 source = "registry+https://github.com/rust-lang/crates.io-index" 428 source = "registry+https://github.com/rust-lang/crates.io-index"
415 dependencies = [ 429 dependencies = [
416 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", 430 "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
431 445
432 [[package]] 446 [[package]]
433 name = "semver-parser" 447 name = "semver-parser"
434 version = "0.7.0" 448 version = "0.7.0"
435 source = "registry+https://github.com/rust-lang/crates.io-index" 449 source = "registry+https://github.com/rust-lang/crates.io-index"
450
451 [[package]]
452 name = "tempfile"
453 version = "3.1.0"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 dependencies = [
456 "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
457 "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)",
458 "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
459 "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)",
460 "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
461 "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
462 ]
436 463
437 [[package]] 464 [[package]]
438 name = "thread_local" 465 name = "thread_local"
439 version = "1.0.1" 466 version = "1.0.1"
440 source = "registry+https://github.com/rust-lang/crates.io-index" 467 source = "registry+https://github.com/rust-lang/crates.io-index"
517 "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" 544 "checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
518 "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" 545 "checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
519 "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098" 546 "checksum rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "db6ce3297f9c85e16621bb8cca38a06779ffc31bb8184e1be4bed2be4678a098"
520 "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9" 547 "checksum rayon-core 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "08a89b46efaf957e52b18062fb2f4660f8b8a4dde1807ca002690868ef2c85a9"
521 "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" 548 "checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
549 "checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
522 "checksum regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87" 550 "checksum regex 1.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5508c1941e4e7cb19965abef075d35a9a8b5cdf0846f30b4050e9b55dc55e87"
523 "checksum regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90" 551 "checksum regex-syntax 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e734e891f5b408a29efbf8309e656876276f49ab6a6ac208600b4419bd893d90"
552 "checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e"
524 "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 553 "checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
525 "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" 554 "checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d"
526 "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 555 "checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
527 "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 556 "checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
557 "checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
528 "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14" 558 "checksum thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
529 "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56" 559 "checksum twox-hash 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3bfd5b7557925ce778ff9b9ef90e3ade34c524b5ff10e239c69a42d546d2af56"
530 "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 560 "checksum wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
531 "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" 561 "checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
532 "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 562 "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"