|
|
@ -11,6 +11,15 @@ dependencies = [ |
|
|
|
"memchr", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "android_system_properties" |
|
|
|
version = "0.1.5" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" |
|
|
|
dependencies = [ |
|
|
|
"libc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "atty" |
|
|
|
version = "0.2.14" |
|
|
@ -52,6 +61,21 @@ version = "1.0.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "chrono" |
|
|
|
version = "0.4.23" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" |
|
|
|
dependencies = [ |
|
|
|
"iana-time-zone", |
|
|
|
"js-sys", |
|
|
|
"num-integer", |
|
|
|
"num-traits", |
|
|
|
"time", |
|
|
|
"wasm-bindgen", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "clipboard-win" |
|
|
|
version = "4.5.0" |
|
|
@ -63,6 +87,16 @@ dependencies = [ |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "codespan-reporting" |
|
|
|
version = "0.11.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" |
|
|
|
dependencies = [ |
|
|
|
"termcolor", |
|
|
|
"unicode-width", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "colored" |
|
|
|
version = "2.0.0" |
|
|
@ -133,6 +167,50 @@ dependencies = [ |
|
|
|
"windows-sys", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cxx" |
|
|
|
version = "1.0.88" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "322296e2f2e5af4270b54df9e85a02ff037e271af20ba3e7fe1575515dc840b8" |
|
|
|
dependencies = [ |
|
|
|
"cc", |
|
|
|
"cxxbridge-flags", |
|
|
|
"cxxbridge-macro", |
|
|
|
"link-cplusplus", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cxx-build" |
|
|
|
version = "1.0.88" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "017a1385b05d631e7875b1f151c9f012d37b53491e2a87f65bff5c262b2111d8" |
|
|
|
dependencies = [ |
|
|
|
"cc", |
|
|
|
"codespan-reporting", |
|
|
|
"once_cell", |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
"scratch", |
|
|
|
"syn", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cxxbridge-flags" |
|
|
|
version = "1.0.88" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "c26bbb078acf09bc1ecda02d4223f03bdd28bd4874edcb0379138efc499ce971" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cxxbridge-macro" |
|
|
|
version = "1.0.88" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "357f40d1f06a24b60ae1fe122542c1fb05d28d32acb2aed064e84bc2ad1e252e" |
|
|
|
dependencies = [ |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
"syn", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "dirs" |
|
|
|
version = "4.0.0" |
|
|
@ -236,7 +314,7 @@ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" |
|
|
|
dependencies = [ |
|
|
|
"cfg-if", |
|
|
|
"libc", |
|
|
|
"wasi", |
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
@ -257,6 +335,30 @@ dependencies = [ |
|
|
|
"libc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "iana-time-zone" |
|
|
|
version = "0.1.53" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" |
|
|
|
dependencies = [ |
|
|
|
"android_system_properties", |
|
|
|
"core-foundation-sys", |
|
|
|
"iana-time-zone-haiku", |
|
|
|
"js-sys", |
|
|
|
"wasm-bindgen", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "iana-time-zone-haiku" |
|
|
|
version = "0.1.1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" |
|
|
|
dependencies = [ |
|
|
|
"cxx", |
|
|
|
"cxx-build", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "io-lifetimes" |
|
|
|
version = "1.0.4" |
|
|
@ -288,6 +390,15 @@ version = "0.2.139" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "link-cplusplus" |
|
|
|
version = "1.0.8" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" |
|
|
|
dependencies = [ |
|
|
|
"cc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "linux-raw-sys" |
|
|
|
version = "0.1.4" |
|
|
@ -348,6 +459,25 @@ dependencies = [ |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "num-integer" |
|
|
|
version = "0.1.45" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" |
|
|
|
dependencies = [ |
|
|
|
"autocfg", |
|
|
|
"num-traits", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "num-traits" |
|
|
|
version = "0.2.15" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" |
|
|
|
dependencies = [ |
|
|
|
"autocfg", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "num_cpus" |
|
|
|
version = "1.15.0" |
|
|
@ -368,6 +498,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" |
|
|
|
name = "pmuw-project" |
|
|
|
version = "0.1.0" |
|
|
|
dependencies = [ |
|
|
|
"chrono", |
|
|
|
"colored", |
|
|
|
"crossbeam-channel", |
|
|
|
"ctrlc", |
|
|
@ -560,6 +691,12 @@ version = "1.1.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "scratch" |
|
|
|
version = "1.0.3" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "shlex" |
|
|
|
version = "1.1.0" |
|
|
@ -610,6 +747,15 @@ dependencies = [ |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "termcolor" |
|
|
|
version = "1.2.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" |
|
|
|
dependencies = [ |
|
|
|
"winapi-util", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "thiserror" |
|
|
|
version = "1.0.38" |
|
|
@ -630,6 +776,17 @@ dependencies = [ |
|
|
|
"syn", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "time" |
|
|
|
version = "0.1.45" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" |
|
|
|
dependencies = [ |
|
|
|
"libc", |
|
|
|
"wasi 0.10.0+wasi-snapshot-preview1", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "uname" |
|
|
|
version = "0.1.1" |
|
|
@ -663,6 +820,12 @@ version = "0.2.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasi" |
|
|
|
version = "0.10.0+wasi-snapshot-preview1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasi" |
|
|
|
version = "0.11.0+wasi-snapshot-preview1" |
|
|
@ -759,6 +922,15 @@ version = "0.4.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "winapi-util" |
|
|
|
version = "0.1.5" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" |
|
|
|
dependencies = [ |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "winapi-x86_64-pc-windows-gnu" |
|
|
|
version = "0.4.0" |
|
|
|