diff options
| author | Mel <einebeere@gmail.com> | 2021-11-21 19:44:47 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-11-21 19:44:47 +0100 |
| commit | 4e9d846fbd51cec9e8d931c4aa3f399668ac316e (patch) | |
| tree | cda2e8645662b6c083add5ac87a279381eec054f /Cargo.lock | |
| parent | abaa72af8a1be00f3f84d7771a7994bfbbccf719 (diff) | |
| download | rabbithole-4e9d846fbd51cec9e8d931c4aa3f399668ac316e.tar.zst rabbithole-4e9d846fbd51cec9e8d931c4aa3f399668ac316e.zip | |
Basic errors for parsing.
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5ba3feb..2fd16a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9,6 +9,49 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61604a8f862e1d5c3229fdd78f8b02c68dcf73a4c4b05fd636d12240aaa242c1" [[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 = "colored" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3616f750b84d8f0de8a58bda93e08e2a81ad3f523089b05f1dffecab48c6cbd" +dependencies = [ + "atty", + "lazy_static", + "winapi", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[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.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8521a1b57e76b1ec69af7599e75e38e7b7fad6610f037db8c79b127201b5d119" + +[[package]] name = "proc-macro2" version = "1.0.30" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -31,6 +74,7 @@ name = "rabbithole" version = "0.1.0" dependencies = [ "anyhow", + "colored", "thiserror", ] @@ -70,3 +114,25 @@ name = "unicode-xid" version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" |
