Show More
@@ -210,22 +210,12 b' dependencies = [' | |||
|
210 | 210 | |
|
211 | 211 | [[package]] |
|
212 | 212 | name = "crossbeam-channel" |
|
213 | version = "0.4.4" | |
|
214 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
215 | checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" | |
|
216 | dependencies = [ | |
|
217 | "crossbeam-utils 0.7.2", | |
|
218 | "maybe-uninit", | |
|
219 | ] | |
|
220 | ||
|
221 | [[package]] | |
|
222 | name = "crossbeam-channel" | |
|
223 | 213 | version = "0.5.2" |
|
224 | 214 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
225 | 215 | checksum = "e54ea8bc3fb1ee042f5aace6e3c6e025d3874866da222930f70ce62aceba0bfa" |
|
226 | 216 | dependencies = [ |
|
227 | 217 | "cfg-if 1.0.0", |
|
228 |
"crossbeam-utils |
|
|
218 | "crossbeam-utils", | |
|
229 | 219 | ] |
|
230 | 220 | |
|
231 | 221 | [[package]] |
@@ -236,7 +226,7 b' checksum = "94af6efb46fef72616855b036a62' | |||
|
236 | 226 | dependencies = [ |
|
237 | 227 | "cfg-if 1.0.0", |
|
238 | 228 | "crossbeam-epoch", |
|
239 |
"crossbeam-utils |
|
|
229 | "crossbeam-utils", | |
|
240 | 230 | ] |
|
241 | 231 | |
|
242 | 232 | [[package]] |
@@ -247,7 +237,7 b' checksum = "a1aaa739f95311c2c7887a76863f' | |||
|
247 | 237 | dependencies = [ |
|
248 | 238 | "cfg-if 1.0.0", |
|
249 | 239 | "const_fn", |
|
250 |
"crossbeam-utils |
|
|
240 | "crossbeam-utils", | |
|
251 | 241 | "lazy_static", |
|
252 | 242 | "memoffset", |
|
253 | 243 | "scopeguard", |
@@ -255,17 +245,6 b' dependencies = [' | |||
|
255 | 245 | |
|
256 | 246 | [[package]] |
|
257 | 247 | name = "crossbeam-utils" |
|
258 | version = "0.7.2" | |
|
259 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
260 | checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" | |
|
261 | dependencies = [ | |
|
262 | "autocfg", | |
|
263 | "cfg-if 0.1.10", | |
|
264 | "lazy_static", | |
|
265 | ] | |
|
266 | ||
|
267 | [[package]] | |
|
268 | name = "crossbeam-utils" | |
|
269 | 248 | version = "0.8.1" |
|
270 | 249 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
271 | 250 | checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" |
@@ -340,25 +319,12 b' checksum = "e78d4f1cc4ae33bbfc157ed5d5a5' | |||
|
340 | 319 | |
|
341 | 320 | [[package]] |
|
342 | 321 | name = "env_logger" |
|
343 | version = "0.7.1" | |
|
344 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
345 | checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36" | |
|
346 | dependencies = [ | |
|
347 | "atty", | |
|
348 | "humantime 1.3.0", | |
|
349 | "log", | |
|
350 | "regex", | |
|
351 | "termcolor", | |
|
352 | ] | |
|
353 | ||
|
354 | [[package]] | |
|
355 | name = "env_logger" | |
|
356 | 322 | version = "0.9.0" |
|
357 | 323 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
358 | 324 | checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3" |
|
359 | 325 | dependencies = [ |
|
360 | 326 | "atty", |
|
361 |
"humantime |
|
|
327 | "humantime", | |
|
362 | 328 | "log", |
|
363 | 329 | "regex", |
|
364 | 330 | "termcolor", |
@@ -477,7 +443,7 b' dependencies = [' | |||
|
477 | 443 | "byteorder", |
|
478 | 444 | "bytes-cast", |
|
479 | 445 | "clap", |
|
480 |
"crossbeam-channel |
|
|
446 | "crossbeam-channel", | |
|
481 | 447 | "derive_more", |
|
482 | 448 | "flate2", |
|
483 | 449 | "format-bytes", |
@@ -509,8 +475,8 b' name = "hg-cpython"' | |||
|
509 | 475 | version = "0.1.0" |
|
510 | 476 | dependencies = [ |
|
511 | 477 | "cpython", |
|
512 |
"crossbeam-channel |
|
|
513 |
"env_logger |
|
|
478 | "crossbeam-channel", | |
|
479 | "env_logger", | |
|
514 | 480 | "hg-core", |
|
515 | 481 | "libc", |
|
516 | 482 | "log", |
@@ -529,15 +495,6 b' dependencies = [' | |||
|
529 | 495 | |
|
530 | 496 | [[package]] |
|
531 | 497 | name = "humantime" |
|
532 | version = "1.3.0" | |
|
533 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
534 | checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" | |
|
535 | dependencies = [ | |
|
536 | "quick-error", | |
|
537 | ] | |
|
538 | ||
|
539 | [[package]] | |
|
540 | name = "humantime" | |
|
541 | 498 | version = "2.1.0" |
|
542 | 499 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
543 | 500 | checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" |
@@ -631,12 +588,6 b' dependencies = [' | |||
|
631 | 588 | ] |
|
632 | 589 | |
|
633 | 590 | [[package]] |
|
634 | name = "maybe-uninit" | |
|
635 | version = "2.0.0" | |
|
636 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
637 | checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" | |
|
638 | ||
|
639 | [[package]] | |
|
640 | 591 | name = "memchr" |
|
641 | 592 | version = "2.4.1" |
|
642 | 593 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -788,12 +739,6 b' dependencies = [' | |||
|
788 | 739 | ] |
|
789 | 740 | |
|
790 | 741 | [[package]] |
|
791 | name = "quick-error" | |
|
792 | version = "1.2.3" | |
|
793 | source = "registry+https://github.com/rust-lang/crates.io-index" | |
|
794 | checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" | |
|
795 | ||
|
796 | [[package]] | |
|
797 | 742 | name = "quote" |
|
798 | 743 | version = "1.0.7" |
|
799 | 744 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -919,9 +864,9 b' version = "1.9.1"' | |||
|
919 | 864 | source = "registry+https://github.com/rust-lang/crates.io-index" |
|
920 | 865 | checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" |
|
921 | 866 | dependencies = [ |
|
922 |
"crossbeam-channel |
|
|
867 | "crossbeam-channel", | |
|
923 | 868 | "crossbeam-deque", |
|
924 |
"crossbeam-utils |
|
|
869 | "crossbeam-utils", | |
|
925 | 870 | "lazy_static", |
|
926 | 871 | "num_cpus", |
|
927 | 872 | ] |
@@ -969,7 +914,7 b' dependencies = [' | |||
|
969 | 914 | "chrono", |
|
970 | 915 | "clap", |
|
971 | 916 | "derive_more", |
|
972 |
"env_logger |
|
|
917 | "env_logger", | |
|
973 | 918 | "format-bytes", |
|
974 | 919 | "hg-core", |
|
975 | 920 | "home", |
@@ -10,10 +10,10 b' crate-type = ["cdylib"]' | |||
|
10 | 10 | |
|
11 | 11 | [dependencies] |
|
12 | 12 | cpython = { version = "0.7.0", features = ["extension-module"] } |
|
13 |
crossbeam-channel = "0. |
|
|
13 | crossbeam-channel = "0.5.2" | |
|
14 | 14 | hg-core = { path = "../hg-core"} |
|
15 | libc = "0.2" | |
|
16 |
log = "0.4. |
|
|
17 |
env_logger = "0. |
|
|
15 | libc = "0.2.119" | |
|
16 | log = "0.4.14" | |
|
17 | env_logger = "0.9.0" | |
|
18 | 18 | stable_deref_trait = "1.2.0" |
|
19 | 19 | vcsgraph = "0.2.0" |
General Comments 0
You need to be logged in to leave comments.
Login now