diff options
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 242 |
1 files changed, 242 insertions, 0 deletions
| @@ -3,12 +3,120 @@ | |||
| 3 | version = 4 | 3 | version = 4 |
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "anstream" | ||
| 7 | version = "0.6.21" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" | ||
| 10 | dependencies = [ | ||
| 11 | "anstyle", | ||
| 12 | "anstyle-parse", | ||
| 13 | "anstyle-query", | ||
| 14 | "anstyle-wincon", | ||
| 15 | "colorchoice", | ||
| 16 | "is_terminal_polyfill", | ||
| 17 | "utf8parse", | ||
| 18 | ] | ||
| 19 | |||
| 20 | [[package]] | ||
| 21 | name = "anstyle" | ||
| 22 | version = "1.0.13" | ||
| 23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 24 | checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" | ||
| 25 | |||
| 26 | [[package]] | ||
| 27 | name = "anstyle-parse" | ||
| 28 | version = "0.2.7" | ||
| 29 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 30 | checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" | ||
| 31 | dependencies = [ | ||
| 32 | "utf8parse", | ||
| 33 | ] | ||
| 34 | |||
| 35 | [[package]] | ||
| 36 | name = "anstyle-query" | ||
| 37 | version = "1.1.4" | ||
| 38 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 39 | checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" | ||
| 40 | dependencies = [ | ||
| 41 | "windows-sys", | ||
| 42 | ] | ||
| 43 | |||
| 44 | [[package]] | ||
| 45 | name = "anstyle-wincon" | ||
| 46 | version = "3.0.10" | ||
| 47 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 48 | checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" | ||
| 49 | dependencies = [ | ||
| 50 | "anstyle", | ||
| 51 | "once_cell_polyfill", | ||
| 52 | "windows-sys", | ||
| 53 | ] | ||
| 54 | |||
| 55 | [[package]] | ||
| 56 | name = "clap" | ||
| 57 | version = "4.5.48" | ||
| 58 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 59 | checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" | ||
| 60 | dependencies = [ | ||
| 61 | "clap_builder", | ||
| 62 | "clap_derive", | ||
| 63 | ] | ||
| 64 | |||
| 65 | [[package]] | ||
| 66 | name = "clap_builder" | ||
| 67 | version = "4.5.48" | ||
| 68 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 69 | checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" | ||
| 70 | dependencies = [ | ||
| 71 | "anstream", | ||
| 72 | "anstyle", | ||
| 73 | "clap_lex", | ||
| 74 | "strsim", | ||
| 75 | ] | ||
| 76 | |||
| 77 | [[package]] | ||
| 78 | name = "clap_derive" | ||
| 79 | version = "4.5.47" | ||
| 80 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 81 | checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" | ||
| 82 | dependencies = [ | ||
| 83 | "heck", | ||
| 84 | "proc-macro2", | ||
| 85 | "quote", | ||
| 86 | "syn", | ||
| 87 | ] | ||
| 88 | |||
| 89 | [[package]] | ||
| 90 | name = "clap_lex" | ||
| 91 | version = "0.7.5" | ||
| 92 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 93 | checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" | ||
| 94 | |||
| 95 | [[package]] | ||
| 96 | name = "colorchoice" | ||
| 97 | version = "1.0.4" | ||
| 98 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 99 | checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" | ||
| 100 | |||
| 101 | [[package]] | ||
| 102 | name = "heck" | ||
| 103 | version = "0.5.0" | ||
| 104 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 105 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" | ||
| 106 | |||
| 107 | [[package]] | ||
| 6 | name = "ipnet" | 108 | name = "ipnet" |
| 7 | version = "2.11.0" | 109 | version = "2.11.0" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 110 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 9 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" | 111 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" |
| 10 | 112 | ||
| 11 | [[package]] | 113 | [[package]] |
| 114 | name = "is_terminal_polyfill" | ||
| 115 | version = "1.70.1" | ||
| 116 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 117 | checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" | ||
| 118 | |||
| 119 | [[package]] | ||
| 12 | name = "libc" | 120 | name = "libc" |
| 13 | version = "0.2.176" | 121 | version = "0.2.176" |
| 14 | source = "registry+https://github.com/rust-lang/crates.io-index" | 122 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -18,6 +126,140 @@ checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" | |||
| 18 | name = "netiso" | 126 | name = "netiso" |
| 19 | version = "0.1.0" | 127 | version = "0.1.0" |
| 20 | dependencies = [ | 128 | dependencies = [ |
| 129 | "clap", | ||
| 21 | "ipnet", | 130 | "ipnet", |
| 22 | "libc", | 131 | "libc", |
| 23 | ] | 132 | ] |
| 133 | |||
| 134 | [[package]] | ||
| 135 | name = "once_cell_polyfill" | ||
| 136 | version = "1.70.1" | ||
| 137 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 138 | checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" | ||
| 139 | |||
| 140 | [[package]] | ||
| 141 | name = "proc-macro2" | ||
| 142 | version = "1.0.101" | ||
| 143 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 144 | checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" | ||
| 145 | dependencies = [ | ||
| 146 | "unicode-ident", | ||
| 147 | ] | ||
| 148 | |||
| 149 | [[package]] | ||
| 150 | name = "quote" | ||
| 151 | version = "1.0.41" | ||
| 152 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 153 | checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" | ||
| 154 | dependencies = [ | ||
| 155 | "proc-macro2", | ||
| 156 | ] | ||
| 157 | |||
| 158 | [[package]] | ||
| 159 | name = "strsim" | ||
| 160 | version = "0.11.1" | ||
| 161 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 162 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" | ||
| 163 | |||
| 164 | [[package]] | ||
| 165 | name = "syn" | ||
| 166 | version = "2.0.106" | ||
| 167 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 168 | checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" | ||
| 169 | dependencies = [ | ||
| 170 | "proc-macro2", | ||
| 171 | "quote", | ||
| 172 | "unicode-ident", | ||
| 173 | ] | ||
| 174 | |||
| 175 | [[package]] | ||
| 176 | name = "unicode-ident" | ||
| 177 | version = "1.0.19" | ||
| 178 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 179 | checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" | ||
| 180 | |||
| 181 | [[package]] | ||
| 182 | name = "utf8parse" | ||
| 183 | version = "0.2.2" | ||
| 184 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 185 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" | ||
| 186 | |||
| 187 | [[package]] | ||
| 188 | name = "windows-link" | ||
| 189 | version = "0.2.1" | ||
| 190 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 191 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" | ||
| 192 | |||
| 193 | [[package]] | ||
| 194 | name = "windows-sys" | ||
| 195 | version = "0.60.2" | ||
| 196 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 197 | checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" | ||
| 198 | dependencies = [ | ||
| 199 | "windows-targets", | ||
| 200 | ] | ||
| 201 | |||
| 202 | [[package]] | ||
| 203 | name = "windows-targets" | ||
| 204 | version = "0.53.5" | ||
| 205 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 206 | checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" | ||
| 207 | dependencies = [ | ||
| 208 | "windows-link", | ||
| 209 | "windows_aarch64_gnullvm", | ||
| 210 | "windows_aarch64_msvc", | ||
| 211 | "windows_i686_gnu", | ||
| 212 | "windows_i686_gnullvm", | ||
| 213 | "windows_i686_msvc", | ||
| 214 | "windows_x86_64_gnu", | ||
| 215 | "windows_x86_64_gnullvm", | ||
| 216 | "windows_x86_64_msvc", | ||
| 217 | ] | ||
| 218 | |||
| 219 | [[package]] | ||
| 220 | name = "windows_aarch64_gnullvm" | ||
| 221 | version = "0.53.1" | ||
| 222 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 223 | checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" | ||
| 224 | |||
| 225 | [[package]] | ||
| 226 | name = "windows_aarch64_msvc" | ||
| 227 | version = "0.53.1" | ||
| 228 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 229 | checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" | ||
| 230 | |||
| 231 | [[package]] | ||
| 232 | name = "windows_i686_gnu" | ||
| 233 | version = "0.53.1" | ||
| 234 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 235 | checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" | ||
| 236 | |||
| 237 | [[package]] | ||
| 238 | name = "windows_i686_gnullvm" | ||
| 239 | version = "0.53.1" | ||
| 240 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 241 | checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" | ||
| 242 | |||
| 243 | [[package]] | ||
| 244 | name = "windows_i686_msvc" | ||
| 245 | version = "0.53.1" | ||
| 246 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 247 | checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" | ||
| 248 | |||
| 249 | [[package]] | ||
| 250 | name = "windows_x86_64_gnu" | ||
| 251 | version = "0.53.1" | ||
| 252 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 253 | checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" | ||
| 254 | |||
| 255 | [[package]] | ||
| 256 | name = "windows_x86_64_gnullvm" | ||
| 257 | version = "0.53.1" | ||
| 258 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 259 | checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" | ||
| 260 | |||
| 261 | [[package]] | ||
| 262 | name = "windows_x86_64_msvc" | ||
| 263 | version = "0.53.1" | ||
| 264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 265 | checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" | ||
