@@ -158,6 +158,30 @@ version = "1.0.4" |
| 158 | 158 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 159 | 159 | checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" |
| 160 | 160 | |
| 161 | +[[package]] |
| 162 | +name = "crossbeam-channel" |
| 163 | +version = "0.5.15" |
| 164 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 165 | +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" |
| 166 | +dependencies = [ |
| 167 | + "crossbeam-utils", |
| 168 | +] |
| 169 | + |
| 170 | +[[package]] |
| 171 | +name = "crossbeam-utils" |
| 172 | +version = "0.8.21" |
| 173 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 174 | +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" |
| 175 | + |
| 176 | +[[package]] |
| 177 | +name = "deranged" |
| 178 | +version = "0.5.6" |
| 179 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 180 | +checksum = "cc3dc5ad92c2e2d1c193bbbbdf2ea477cb81331de4f3103f267ca18368b988c4" |
| 181 | +dependencies = [ |
| 182 | + "powerfmt", |
| 183 | +] |
| 184 | + |
| 161 | 185 | [[package]] |
| 162 | 186 | name = "dirs" |
| 163 | 187 | version = "6.0.0" |
@@ -273,6 +297,7 @@ dependencies = [ |
| 273 | 297 | "thiserror", |
| 274 | 298 | "toml 0.8.23", |
| 275 | 299 | "tracing", |
| 300 | + "tracing-appender", |
| 276 | 301 | "tracing-subscriber", |
| 277 | 302 | "x11rb", |
| 278 | 303 | ] |
@@ -514,6 +539,12 @@ dependencies = [ |
| 514 | 539 | "windows-sys 0.61.2", |
| 515 | 540 | ] |
| 516 | 541 | |
| 542 | +[[package]] |
| 543 | +name = "num-conv" |
| 544 | +version = "0.2.0" |
| 545 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 546 | +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" |
| 547 | + |
| 517 | 548 | [[package]] |
| 518 | 549 | name = "once_cell" |
| 519 | 550 | version = "1.21.3" |
@@ -594,6 +625,12 @@ version = "0.3.32" |
| 594 | 625 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 595 | 626 | checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" |
| 596 | 627 | |
| 628 | +[[package]] |
| 629 | +name = "powerfmt" |
| 630 | +version = "0.2.0" |
| 631 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 632 | +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" |
| 633 | + |
| 597 | 634 | [[package]] |
| 598 | 635 | name = "proc-macro-crate" |
| 599 | 636 | version = "3.4.0" |
@@ -809,6 +846,37 @@ dependencies = [ |
| 809 | 846 | "cfg-if", |
| 810 | 847 | ] |
| 811 | 848 | |
| 849 | +[[package]] |
| 850 | +name = "time" |
| 851 | +version = "0.3.47" |
| 852 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 853 | +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" |
| 854 | +dependencies = [ |
| 855 | + "deranged", |
| 856 | + "itoa", |
| 857 | + "num-conv", |
| 858 | + "powerfmt", |
| 859 | + "serde_core", |
| 860 | + "time-core", |
| 861 | + "time-macros", |
| 862 | +] |
| 863 | + |
| 864 | +[[package]] |
| 865 | +name = "time-core" |
| 866 | +version = "0.1.8" |
| 867 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 868 | +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" |
| 869 | + |
| 870 | +[[package]] |
| 871 | +name = "time-macros" |
| 872 | +version = "0.2.27" |
| 873 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 874 | +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" |
| 875 | +dependencies = [ |
| 876 | + "num-conv", |
| 877 | + "time-core", |
| 878 | +] |
| 879 | + |
| 812 | 880 | [[package]] |
| 813 | 881 | name = "toml" |
| 814 | 882 | version = "0.8.23" |
@@ -912,6 +980,18 @@ dependencies = [ |
| 912 | 980 | "tracing-core", |
| 913 | 981 | ] |
| 914 | 982 | |
| 983 | +[[package]] |
| 984 | +name = "tracing-appender" |
| 985 | +version = "0.2.4" |
| 986 | +source = "registry+https://github.com/rust-lang/crates.io-index" |
| 987 | +checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" |
| 988 | +dependencies = [ |
| 989 | + "crossbeam-channel", |
| 990 | + "thiserror", |
| 991 | + "time", |
| 992 | + "tracing-subscriber", |
| 993 | +] |
| 994 | + |
| 915 | 995 | [[package]] |
| 916 | 996 | name = "tracing-attributes" |
| 917 | 997 | version = "0.1.31" |