Zero-copy FTP/HTTP Daemon compatible with all POSIX systems
| 1 | # This file is automatically @generated by Cargo. |
| 2 | # It is not intended for manual editing. |
| 3 | version = 4 |
| 4 | |
| 5 | [[package]] |
| 6 | name = "aho-corasick" |
| 7 | version = "1.1.4" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 9 | checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" |
| 10 | dependencies = [ |
| 11 | "memchr", |
| 12 | ] |
| 13 | |
| 14 | [[package]] |
| 15 | name = "bindgen" |
| 16 | version = "0.69.5" |
| 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 18 | checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" |
| 19 | dependencies = [ |
| 20 | "bitflags", |
| 21 | "cexpr", |
| 22 | "clang-sys", |
| 23 | "itertools", |
| 24 | "lazy_static", |
| 25 | "lazycell", |
| 26 | "log", |
| 27 | "prettyplease", |
| 28 | "proc-macro2", |
| 29 | "quote", |
| 30 | "regex", |
| 31 | "rustc-hash", |
| 32 | "shlex", |
| 33 | "syn", |
| 34 | "which", |
| 35 | ] |
| 36 | |
| 37 | [[package]] |
| 38 | name = "bitflags" |
| 39 | version = "2.11.0" |
| 40 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 41 | checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" |
| 42 | |
| 43 | [[package]] |
| 44 | name = "cc" |
| 45 | version = "1.2.56" |
| 46 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 47 | checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" |
| 48 | dependencies = [ |
| 49 | "find-msvc-tools", |
| 50 | "shlex", |
| 51 | ] |
| 52 | |
| 53 | [[package]] |
| 54 | name = "cexpr" |
| 55 | version = "0.6.0" |
| 56 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 57 | checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" |
| 58 | dependencies = [ |
| 59 | "nom", |
| 60 | ] |
| 61 | |
| 62 | [[package]] |
| 63 | name = "cfg-if" |
| 64 | version = "1.0.4" |
| 65 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 66 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" |
| 67 | |
| 68 | [[package]] |
| 69 | name = "clang-sys" |
| 70 | version = "1.8.1" |
| 71 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 72 | checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" |
| 73 | dependencies = [ |
| 74 | "glob", |
| 75 | "libc", |
| 76 | "libloading", |
| 77 | ] |
| 78 | |
| 79 | [[package]] |
| 80 | name = "either" |
| 81 | version = "1.15.0" |
| 82 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 83 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" |
| 84 | |
| 85 | [[package]] |
| 86 | name = "errno" |
| 87 | version = "0.3.14" |
| 88 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 89 | checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" |
| 90 | dependencies = [ |
| 91 | "libc", |
| 92 | "windows-sys 0.61.2", |
| 93 | ] |
| 94 | |
| 95 | [[package]] |
| 96 | name = "find-msvc-tools" |
| 97 | version = "0.1.9" |
| 98 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 99 | checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" |
| 100 | |
| 101 | [[package]] |
| 102 | name = "glob" |
| 103 | version = "0.3.3" |
| 104 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 105 | checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" |
| 106 | |
| 107 | [[package]] |
| 108 | name = "home" |
| 109 | version = "0.5.12" |
| 110 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 111 | checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d" |
| 112 | dependencies = [ |
| 113 | "windows-sys 0.61.2", |
| 114 | ] |
| 115 | |
| 116 | [[package]] |
| 117 | name = "itertools" |
| 118 | version = "0.12.1" |
| 119 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 120 | checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" |
| 121 | dependencies = [ |
| 122 | "either", |
| 123 | ] |
| 124 | |
| 125 | [[package]] |
| 126 | name = "lazy_static" |
| 127 | version = "1.5.0" |
| 128 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 129 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" |
| 130 | |
| 131 | [[package]] |
| 132 | name = "lazycell" |
| 133 | version = "1.3.0" |
| 134 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 135 | checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" |
| 136 | |
| 137 | [[package]] |
| 138 | name = "libc" |
| 139 | version = "0.2.182" |
| 140 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 141 | checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" |
| 142 | |
| 143 | [[package]] |
| 144 | name = "libloading" |
| 145 | version = "0.8.9" |
| 146 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 147 | checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" |
| 148 | dependencies = [ |
| 149 | "cfg-if", |
| 150 | "windows-link", |
| 151 | ] |
| 152 | |
| 153 | [[package]] |
| 154 | name = "linux-raw-sys" |
| 155 | version = "0.4.15" |
| 156 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 157 | checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" |
| 158 | |
| 159 | [[package]] |
| 160 | name = "log" |
| 161 | version = "0.4.29" |
| 162 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 163 | checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" |
| 164 | |
| 165 | [[package]] |
| 166 | name = "memchr" |
| 167 | version = "2.8.0" |
| 168 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 169 | checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" |
| 170 | |
| 171 | [[package]] |
| 172 | name = "minimal-lexical" |
| 173 | version = "0.2.1" |
| 174 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 175 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" |
| 176 | |
| 177 | [[package]] |
| 178 | name = "nom" |
| 179 | version = "7.1.3" |
| 180 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 181 | checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" |
| 182 | dependencies = [ |
| 183 | "memchr", |
| 184 | "minimal-lexical", |
| 185 | ] |
| 186 | |
| 187 | [[package]] |
| 188 | name = "once_cell" |
| 189 | version = "1.21.3" |
| 190 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 191 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" |
| 192 | |
| 193 | [[package]] |
| 194 | name = "prettyplease" |
| 195 | version = "0.2.37" |
| 196 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 197 | checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" |
| 198 | dependencies = [ |
| 199 | "proc-macro2", |
| 200 | "syn", |
| 201 | ] |
| 202 | |
| 203 | [[package]] |
| 204 | name = "proc-macro2" |
| 205 | version = "1.0.106" |
| 206 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 207 | checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" |
| 208 | dependencies = [ |
| 209 | "unicode-ident", |
| 210 | ] |
| 211 | |
| 212 | [[package]] |
| 213 | name = "quote" |
| 214 | version = "1.0.44" |
| 215 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 216 | checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" |
| 217 | dependencies = [ |
| 218 | "proc-macro2", |
| 219 | ] |
| 220 | |
| 221 | [[package]] |
| 222 | name = "regex" |
| 223 | version = "1.12.3" |
| 224 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 225 | checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" |
| 226 | dependencies = [ |
| 227 | "aho-corasick", |
| 228 | "memchr", |
| 229 | "regex-automata", |
| 230 | "regex-syntax", |
| 231 | ] |
| 232 | |
| 233 | [[package]] |
| 234 | name = "regex-automata" |
| 235 | version = "0.4.14" |
| 236 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 237 | checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" |
| 238 | dependencies = [ |
| 239 | "aho-corasick", |
| 240 | "memchr", |
| 241 | "regex-syntax", |
| 242 | ] |
| 243 | |
| 244 | [[package]] |
| 245 | name = "regex-syntax" |
| 246 | version = "0.8.10" |
| 247 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 248 | checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" |
| 249 | |
| 250 | [[package]] |
| 251 | name = "rustc-hash" |
| 252 | version = "1.1.0" |
| 253 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 254 | checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
| 255 | |
| 256 | [[package]] |
| 257 | name = "rustix" |
| 258 | version = "0.38.44" |
| 259 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 260 | checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" |
| 261 | dependencies = [ |
| 262 | "bitflags", |
| 263 | "errno", |
| 264 | "libc", |
| 265 | "linux-raw-sys", |
| 266 | "windows-sys 0.59.0", |
| 267 | ] |
| 268 | |
| 269 | [[package]] |
| 270 | name = "shlex" |
| 271 | version = "1.3.0" |
| 272 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 273 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" |
| 274 | |
| 275 | [[package]] |
| 276 | name = "syn" |
| 277 | version = "2.0.117" |
| 278 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 279 | checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" |
| 280 | dependencies = [ |
| 281 | "proc-macro2", |
| 282 | "quote", |
| 283 | "unicode-ident", |
| 284 | ] |
| 285 | |
| 286 | [[package]] |
| 287 | name = "unicode-ident" |
| 288 | version = "1.0.24" |
| 289 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 290 | checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" |
| 291 | |
| 292 | [[package]] |
| 293 | name = "which" |
| 294 | version = "4.4.2" |
| 295 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 296 | checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" |
| 297 | dependencies = [ |
| 298 | "either", |
| 299 | "home", |
| 300 | "once_cell", |
| 301 | "rustix", |
| 302 | ] |
| 303 | |
| 304 | [[package]] |
| 305 | name = "windows-link" |
| 306 | version = "0.2.1" |
| 307 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 308 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" |
| 309 | |
| 310 | [[package]] |
| 311 | name = "windows-sys" |
| 312 | version = "0.59.0" |
| 313 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 314 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" |
| 315 | dependencies = [ |
| 316 | "windows-targets", |
| 317 | ] |
| 318 | |
| 319 | [[package]] |
| 320 | name = "windows-sys" |
| 321 | version = "0.61.2" |
| 322 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 323 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" |
| 324 | dependencies = [ |
| 325 | "windows-link", |
| 326 | ] |
| 327 | |
| 328 | [[package]] |
| 329 | name = "windows-targets" |
| 330 | version = "0.52.6" |
| 331 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 332 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" |
| 333 | dependencies = [ |
| 334 | "windows_aarch64_gnullvm", |
| 335 | "windows_aarch64_msvc", |
| 336 | "windows_i686_gnu", |
| 337 | "windows_i686_gnullvm", |
| 338 | "windows_i686_msvc", |
| 339 | "windows_x86_64_gnu", |
| 340 | "windows_x86_64_gnullvm", |
| 341 | "windows_x86_64_msvc", |
| 342 | ] |
| 343 | |
| 344 | [[package]] |
| 345 | name = "windows_aarch64_gnullvm" |
| 346 | version = "0.52.6" |
| 347 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 348 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" |
| 349 | |
| 350 | [[package]] |
| 351 | name = "windows_aarch64_msvc" |
| 352 | version = "0.52.6" |
| 353 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 354 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" |
| 355 | |
| 356 | [[package]] |
| 357 | name = "windows_i686_gnu" |
| 358 | version = "0.52.6" |
| 359 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 360 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" |
| 361 | |
| 362 | [[package]] |
| 363 | name = "windows_i686_gnullvm" |
| 364 | version = "0.52.6" |
| 365 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 366 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" |
| 367 | |
| 368 | [[package]] |
| 369 | name = "windows_i686_msvc" |
| 370 | version = "0.52.6" |
| 371 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 372 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" |
| 373 | |
| 374 | [[package]] |
| 375 | name = "windows_x86_64_gnu" |
| 376 | version = "0.52.6" |
| 377 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 378 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" |
| 379 | |
| 380 | [[package]] |
| 381 | name = "windows_x86_64_gnullvm" |
| 382 | version = "0.52.6" |
| 383 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 384 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" |
| 385 | |
| 386 | [[package]] |
| 387 | name = "windows_x86_64_msvc" |
| 388 | version = "0.52.6" |
| 389 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 390 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" |
| 391 | |
| 392 | [[package]] |
| 393 | name = "zftpd" |
| 394 | version = "1.0.0" |
| 395 | dependencies = [ |
| 396 | "bindgen", |
| 397 | "cc", |
| 398 | "libc", |
| 399 | ] |
| 400 |