1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "ansi_term" 7version = "0.12.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 10dependencies = [ 11 "winapi", 12] 13 14[[package]] 15name = "atty" 16version = "0.2.14" 17source = "registry+https://github.com/rust-lang/crates.io-index" 18checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 19dependencies = [ 20 "hermit-abi", 21 "libc", 22 "winapi", 23] 24 25[[package]] 26name = "bitflags" 27version = "1.3.2" 28source = "registry+https://github.com/rust-lang/crates.io-index" 29checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 30 31[[package]] 32name = "cfg-if" 33version = "1.0.0" 34source = "registry+https://github.com/rust-lang/crates.io-index" 35checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 36 37[[package]] 38name = "clap" 39version = "2.34.0" 40source = "registry+https://github.com/rust-lang/crates.io-index" 41checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 42dependencies = [ 43 "ansi_term", 44 "atty", 45 "bitflags", 46 "strsim", 47 "textwrap 0.11.0", 48 "unicode-width", 49 "vec_map", 50] 51 52[[package]] 53name = "ferris-says" 54version = "0.2.1" 55source = "registry+https://github.com/rust-lang/crates.io-index" 56checksum = "9515ec2dd9606ec230f6b2d1f25fd9e808a2f2af600143f7efe7e5865505b7aa" 57dependencies = [ 58 "smallvec", 59 "textwrap 0.13.4", 60 "unicode-width", 61] 62 63[[package]] 64name = "getrandom" 65version = "0.1.16" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 68dependencies = [ 69 "cfg-if", 70 "libc", 71 "wasi", 72] 73 74[[package]] 75name = "hermit-abi" 76version = "0.1.19" 77source = "registry+https://github.com/rust-lang/crates.io-index" 78checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 79dependencies = [ 80 "libc", 81] 82 83[[package]] 84name = "libc" 85version = "0.2.139" 86source = "registry+https://github.com/rust-lang/crates.io-index" 87checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 88 89[[package]] 90name = "num_printer" 91version = "0.1.0" 92dependencies = [ 93 "clap", 94 "printer", 95] 96 97[[package]] 98name = "ppv-lite86" 99version = "0.2.17" 100source = "registry+https://github.com/rust-lang/crates.io-index" 101checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 102 103[[package]] 104name = "printer" 105version = "0.1.0" 106dependencies = [ 107 "ferris-says", 108 "rng", 109] 110 111[[package]] 112name = "rand" 113version = "0.7.3" 114source = "registry+https://github.com/rust-lang/crates.io-index" 115checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 116dependencies = [ 117 "getrandom", 118 "libc", 119 "rand_chacha", 120 "rand_core", 121 "rand_hc", 122] 123 124[[package]] 125name = "rand_chacha" 126version = "0.2.2" 127source = "registry+https://github.com/rust-lang/crates.io-index" 128checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 129dependencies = [ 130 "ppv-lite86", 131 "rand_core", 132] 133 134[[package]] 135name = "rand_core" 136version = "0.5.1" 137source = "registry+https://github.com/rust-lang/crates.io-index" 138checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 139dependencies = [ 140 "getrandom", 141] 142 143[[package]] 144name = "rand_hc" 145version = "0.2.0" 146source = "registry+https://github.com/rust-lang/crates.io-index" 147checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 148dependencies = [ 149 "rand_core", 150] 151 152[[package]] 153name = "rng" 154version = "0.1.0" 155dependencies = [ 156 "rand", 157] 158 159[[package]] 160name = "smallvec" 161version = "0.4.5" 162source = "registry+https://github.com/rust-lang/crates.io-index" 163checksum = "f90c5e5fe535e48807ab94fc611d323935f39d4660c52b26b96446a7b33aef10" 164 165[[package]] 166name = "smawk" 167version = "0.3.1" 168source = "registry+https://github.com/rust-lang/crates.io-index" 169checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043" 170 171[[package]] 172name = "strsim" 173version = "0.8.0" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" 176 177[[package]] 178name = "textwrap" 179version = "0.11.0" 180source = "registry+https://github.com/rust-lang/crates.io-index" 181checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 182dependencies = [ 183 "unicode-width", 184] 185 186[[package]] 187name = "textwrap" 188version = "0.13.4" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" 191dependencies = [ 192 "smawk", 193 "unicode-width", 194] 195 196[[package]] 197name = "unicode-width" 198version = "0.1.10" 199source = "registry+https://github.com/rust-lang/crates.io-index" 200checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 201 202[[package]] 203name = "vec_map" 204version = "0.8.2" 205source = "registry+https://github.com/rust-lang/crates.io-index" 206checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" 207 208[[package]] 209name = "wasi" 210version = "0.9.0+wasi-snapshot-preview1" 211source = "registry+https://github.com/rust-lang/crates.io-index" 212checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 213 214[[package]] 215name = "winapi" 216version = "0.3.9" 217source = "registry+https://github.com/rust-lang/crates.io-index" 218checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 219dependencies = [ 220 "winapi-i686-pc-windows-gnu", 221 "winapi-x86_64-pc-windows-gnu", 222] 223 224[[package]] 225name = "winapi-i686-pc-windows-gnu" 226version = "0.4.0" 227source = "registry+https://github.com/rust-lang/crates.io-index" 228checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 229 230[[package]] 231name = "winapi-x86_64-pc-windows-gnu" 232version = "0.4.0" 233source = "registry+https://github.com/rust-lang/crates.io-index" 234checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 235