@@ -70,6 +70,21 @@ version = "0.2.1" |
| 70 | 70 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 71 | 71 | checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" |
| 72 | 72 | |
| 73 | +[[package]] |
| 74 | +name = "crossbeam-channel" |
| 75 | +version = "0.5.15" |
| 76 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 77 | +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" |
| 78 | +dependencies = [ |
| 79 | + "crossbeam-utils", |
| 80 | +] |
| 81 | + |
| 82 | +[[package]] |
| 83 | +name = "crossbeam-utils" |
| 84 | +version = "0.8.21" |
| 85 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 86 | +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" |
| 87 | + |
| 73 | 88 | [[package]] |
| 74 | 89 | name = "ctrlc" |
| 75 | 90 | version = "3.5.2" |
@@ -81,6 +96,15 @@ dependencies = [ |
| 81 | 96 | "windows-sys", |
| 82 | 97 | ] |
| 83 | 98 | |
| 99 | +[[package]] |
| 100 | +name = "deranged" |
| 101 | +version = "0.5.8" |
| 102 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 103 | +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" |
| 104 | +dependencies = [ |
| 105 | + "powerfmt", |
| 106 | +] |
| 107 | + |
| 84 | 108 | [[package]] |
| 85 | 109 | name = "dirs" |
| 86 | 110 | version = "6.0.0" |
@@ -295,6 +319,12 @@ dependencies = [ |
| 295 | 319 | "windows-sys", |
| 296 | 320 | ] |
| 297 | 321 | |
| 322 | +[[package]] |
| 323 | +name = "num-conv" |
| 324 | +version = "0.2.1" |
| 325 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 326 | +checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967" |
| 327 | + |
| 298 | 328 | [[package]] |
| 299 | 329 | name = "num-traits" |
| 300 | 330 | version = "0.2.19" |
@@ -449,6 +479,12 @@ version = "0.3.32" |
| 449 | 479 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 450 | 480 | checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" |
| 451 | 481 | |
| 482 | +[[package]] |
| 483 | +name = "powerfmt" |
| 484 | +version = "0.2.0" |
| 485 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 486 | +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" |
| 487 | + |
| 452 | 488 | [[package]] |
| 453 | 489 | name = "proc-macro2" |
| 454 | 490 | version = "1.0.106" |
@@ -611,6 +647,12 @@ version = "1.15.1" |
| 611 | 647 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 612 | 648 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" |
| 613 | 649 | |
| 650 | +[[package]] |
| 651 | +name = "symlink" |
| 652 | +version = "0.1.0" |
| 653 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 654 | +checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" |
| 655 | + |
| 614 | 656 | [[package]] |
| 615 | 657 | name = "syn" |
| 616 | 658 | version = "2.0.117" |
@@ -643,6 +685,7 @@ dependencies = [ |
| 643 | 685 | "serde_json", |
| 644 | 686 | "thiserror", |
| 645 | 687 | "tracing", |
| 688 | + "tracing-appender", |
| 646 | 689 | "tracing-subscriber", |
| 647 | 690 | ] |
| 648 | 691 | |
@@ -684,6 +727,37 @@ dependencies = [ |
| 684 | 727 | "cfg-if", |
| 685 | 728 | ] |
| 686 | 729 | |
| 730 | +[[package]] |
| 731 | +name = "time" |
| 732 | +version = "0.3.47" |
| 733 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 734 | +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" |
| 735 | +dependencies = [ |
| 736 | + "deranged", |
| 737 | + "itoa", |
| 738 | + "num-conv", |
| 739 | + "powerfmt", |
| 740 | + "serde_core", |
| 741 | + "time-core", |
| 742 | + "time-macros", |
| 743 | +] |
| 744 | + |
| 745 | +[[package]] |
| 746 | +name = "time-core" |
| 747 | +version = "0.1.8" |
| 748 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 749 | +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" |
| 750 | + |
| 751 | +[[package]] |
| 752 | +name = "time-macros" |
| 753 | +version = "0.2.27" |
| 754 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 755 | +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" |
| 756 | +dependencies = [ |
| 757 | + "num-conv", |
| 758 | + "time-core", |
| 759 | +] |
| 760 | + |
| 687 | 761 | [[package]] |
| 688 | 762 | name = "tracing" |
| 689 | 763 | version = "0.1.44" |
@@ -695,6 +769,19 @@ dependencies = [ |
| 695 | 769 | "tracing-core", |
| 696 | 770 | ] |
| 697 | 771 | |
| 772 | +[[package]] |
| 773 | +name = "tracing-appender" |
| 774 | +version = "0.2.5" |
| 775 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 776 | +checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" |
| 777 | +dependencies = [ |
| 778 | + "crossbeam-channel", |
| 779 | + "symlink", |
| 780 | + "thiserror", |
| 781 | + "time", |
| 782 | + "tracing-subscriber", |
| 783 | +] |
| 784 | + |
| 698 | 785 | [[package]] |
| 699 | 786 | name = "tracing-attributes" |
| 700 | 787 | version = "0.1.31" |