Mercurial > public > mercurial-scm > hg-stable
comparison rust/Cargo.lock @ 48554:99a0b5422cf5
rust: add vcsgraph crate as dependency
Preparing the integration of the vcsgraph library, which will provide generic
algorithms for computations on version control graphs.
Differential Revision: https://phab.mercurial-scm.org/D11945
author | pacien <pacien.trangirard@pacien.net> |
---|---|
date | Fri, 10 Dec 2021 15:22:24 +0100 |
parents | d3ec82016104 |
children | 0dc698c91ca0 |
comparison
equal
deleted
inserted
replaced
48553:59524cb1cd73 | 48554:99a0b5422cf5 |
---|---|
365 source = "registry+https://github.com/rust-lang/crates.io-index" | 365 source = "registry+https://github.com/rust-lang/crates.io-index" |
366 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" | 366 checksum = "5aca5565f760fb5b220e499d72710ed156fdb74e631659e99377d9ebfbd13ae8" |
367 dependencies = [ | 367 dependencies = [ |
368 "libc", | 368 "libc", |
369 ] | 369 ] |
370 | |
371 [[package]] | |
372 name = "hex" | |
373 version = "0.4.3" | |
374 source = "registry+https://github.com/rust-lang/crates.io-index" | |
375 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" | |
370 | 376 |
371 [[package]] | 377 [[package]] |
372 name = "hg-core" | 378 name = "hg-core" |
373 version = "0.1.0" | 379 version = "0.1.0" |
374 dependencies = [ | 380 dependencies = [ |
411 "env_logger", | 417 "env_logger", |
412 "hg-core", | 418 "hg-core", |
413 "libc", | 419 "libc", |
414 "log", | 420 "log", |
415 "stable_deref_trait", | 421 "stable_deref_trait", |
422 "vcsgraph", | |
416 ] | 423 ] |
417 | 424 |
418 [[package]] | 425 [[package]] |
419 name = "home" | 426 name = "home" |
420 version = "0.5.3" | 427 version = "0.5.3" |
985 version = "0.2.11" | 992 version = "0.2.11" |
986 source = "registry+https://github.com/rust-lang/crates.io-index" | 993 source = "registry+https://github.com/rust-lang/crates.io-index" |
987 checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb" | 994 checksum = "b00bca6106a5e23f3eee943593759b7fcddb00554332e856d990c893966879fb" |
988 | 995 |
989 [[package]] | 996 [[package]] |
997 name = "vcsgraph" | |
998 version = "0.2.0" | |
999 source = "registry+https://github.com/rust-lang/crates.io-index" | |
1000 checksum = "4cb68c231e2575f7503a7c19213875f9d4ec2e84e963a56ce3de4b6bee351ef7" | |
1001 dependencies = [ | |
1002 "hex", | |
1003 "rand", | |
1004 "sha-1", | |
1005 ] | |
1006 | |
1007 [[package]] | |
990 name = "vec_map" | 1008 name = "vec_map" |
991 version = "0.8.2" | 1009 version = "0.8.2" |
992 source = "registry+https://github.com/rust-lang/crates.io-index" | 1010 source = "registry+https://github.com/rust-lang/crates.io-index" |
993 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" | 1011 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" |
994 | 1012 |