|
|
@ -11,12 +11,29 @@ dependencies = [ |
|
|
|
"memchr", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "atty" |
|
|
|
version = "0.2.14" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
|
|
|
dependencies = [ |
|
|
|
"hermit-abi", |
|
|
|
"libc", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "bitflags" |
|
|
|
version = "1.3.2" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "bumpalo" |
|
|
|
version = "3.12.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "cc" |
|
|
|
version = "1.0.78" |
|
|
@ -40,6 +57,17 @@ dependencies = [ |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "colored" |
|
|
|
version = "2.0.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" |
|
|
|
dependencies = [ |
|
|
|
"atty", |
|
|
|
"lazy_static", |
|
|
|
"winapi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "crossbeam-channel" |
|
|
|
version = "0.5.6" |
|
|
@ -179,6 +207,15 @@ dependencies = [ |
|
|
|
"wasi", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "hermit-abi" |
|
|
|
version = "0.1.19" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" |
|
|
|
dependencies = [ |
|
|
|
"libc", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "io-lifetimes" |
|
|
|
version = "1.0.4" |
|
|
@ -189,6 +226,21 @@ dependencies = [ |
|
|
|
"windows-sys", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "js-sys" |
|
|
|
version = "0.3.60" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" |
|
|
|
dependencies = [ |
|
|
|
"wasm-bindgen", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "lazy_static" |
|
|
|
version = "1.4.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "libc" |
|
|
|
version = "0.2.139" |
|
|
@ -247,6 +299,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66" |
|
|
|
name = "pmuw-project" |
|
|
|
version = "0.1.0" |
|
|
|
dependencies = [ |
|
|
|
"colored", |
|
|
|
"crossbeam-channel", |
|
|
|
"ctrlc", |
|
|
|
"dirs", |
|
|
@ -255,6 +308,7 @@ dependencies = [ |
|
|
|
"regex", |
|
|
|
"rustyline", |
|
|
|
"shlex", |
|
|
|
"whoami", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
@ -450,6 +504,80 @@ version = "0.11.0+wasi-snapshot-preview1" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasm-bindgen" |
|
|
|
version = "0.2.83" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" |
|
|
|
dependencies = [ |
|
|
|
"cfg-if", |
|
|
|
"wasm-bindgen-macro", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasm-bindgen-backend" |
|
|
|
version = "0.2.83" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" |
|
|
|
dependencies = [ |
|
|
|
"bumpalo", |
|
|
|
"log", |
|
|
|
"once_cell", |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
"syn", |
|
|
|
"wasm-bindgen-shared", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasm-bindgen-macro" |
|
|
|
version = "0.2.83" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" |
|
|
|
dependencies = [ |
|
|
|
"quote", |
|
|
|
"wasm-bindgen-macro-support", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasm-bindgen-macro-support" |
|
|
|
version = "0.2.83" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" |
|
|
|
dependencies = [ |
|
|
|
"proc-macro2", |
|
|
|
"quote", |
|
|
|
"syn", |
|
|
|
"wasm-bindgen-backend", |
|
|
|
"wasm-bindgen-shared", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wasm-bindgen-shared" |
|
|
|
version = "0.2.83" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "web-sys" |
|
|
|
version = "0.3.60" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" |
|
|
|
dependencies = [ |
|
|
|
"js-sys", |
|
|
|
"wasm-bindgen", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "whoami" |
|
|
|
version = "1.3.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "45dbc71f0cdca27dc261a9bd37ddec174e4a0af2b900b890f378460f745426e3" |
|
|
|
dependencies = [ |
|
|
|
"wasm-bindgen", |
|
|
|
"web-sys", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "winapi" |
|
|
|
version = "0.3.9" |
|
|
|