1
0
martillo-maldito/Cargo.lock

772 lines
20 KiB
Plaintext
Raw Normal View History

2024-05-12 13:46:11 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-12-31 03:57:40 +01:00
version = 4
2024-05-12 13:46:11 +02:00
[[package]]
name = "addr2line"
2024-11-28 13:34:08 +01:00
version = "0.24.2"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2024-05-12 13:46:11 +02:00
dependencies = [
"gimli",
]
[[package]]
2024-09-17 01:58:21 +02:00
name = "adler2"
version = "2.0.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-17 01:58:21 +02:00
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2024-05-12 13:46:11 +02:00
[[package]]
name = "aho-corasick"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2024-12-31 03:57:40 +01:00
[[package]]
name = "anstream"
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
[[package]]
name = "anstyle-parse"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
dependencies = [
"windows-sys 0.59.0",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
dependencies = [
"anstyle",
"windows-sys 0.59.0",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2024-12-31 03:57:40 +01:00
"hermit-abi",
"libc",
"winapi",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "backtrace"
2024-09-17 01:58:21 +02:00
version = "0.3.74"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-17 01:58:21 +02:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2024-05-12 13:46:11 +02:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2024-09-22 04:05:35 +02:00
"windows-targets",
2024-05-12 13:46:11 +02:00
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2024-07-21 13:01:23 +02:00
version = "2.6.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2024-05-12 13:46:11 +02:00
[[package]]
name = "cc"
2024-12-31 03:57:40 +01:00
version = "1.2.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "8d6dbb628b8f8555f86d0323c2eb39e3ec81901f4b83e091db8a6a76d316a333"
2024-08-21 04:05:15 +02:00
dependencies = [
"shlex",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cfg_aliases"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]]
name = "clap"
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"ansi_term",
"atty",
"bitflags 1.3.2",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
]
2024-12-31 03:57:40 +01:00
[[package]]
name = "colorchoice"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
[[package]]
name = "env_filter"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
dependencies = [
"log",
"regex",
]
2024-08-30 12:27:32 +02:00
[[package]]
name = "env_logger"
2024-12-31 03:57:40 +01:00
version = "0.11.6"
2024-08-30 12:27:32 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "dcaee3d8e3cfc3fd92428d477bc97fc29ec8716d180c0d74c643bb26166660e0"
2024-08-30 12:27:32 +02:00
dependencies = [
2024-12-31 03:57:40 +01:00
"anstream",
"anstyle",
"env_filter",
2024-08-30 12:27:32 +02:00
"humantime",
"log",
]
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2024-05-12 13:46:11 +02:00
[[package]]
name = "gimli"
2024-11-28 13:34:08 +01:00
version = "0.31.1"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2024-05-12 13:46:11 +02:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2024-08-30 12:27:32 +02:00
[[package]]
name = "humantime"
2024-12-31 03:57:40 +01:00
version = "2.1.0"
2024-08-30 12:27:32 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2024-08-30 12:27:32 +02:00
2024-05-12 13:46:11 +02:00
[[package]]
name = "iptables"
version = "0.5.2"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43b627935a2f5d654613bea2bcd677cc760b03ecf224ced0f1970c0d174813b9"
2024-05-12 13:46:11 +02:00
dependencies = [
"lazy_static",
"nix",
"regex",
]
2024-12-31 03:57:40 +01:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
[[package]]
name = "itoa"
2024-11-28 13:34:08 +01:00
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
2024-05-12 13:46:11 +02:00
[[package]]
name = "lazy_static"
2024-07-21 13:01:23 +02:00
version = "1.5.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2024-05-12 13:46:11 +02:00
[[package]]
name = "libc"
2024-12-31 03:57:40 +01:00
version = "0.2.169"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
2024-05-12 13:46:11 +02:00
[[package]]
name = "log"
2024-07-21 13:01:23 +02:00
version = "0.4.22"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2024-05-12 13:46:11 +02:00
[[package]]
2024-12-31 03:57:40 +01:00
name = "martillo_maldito"
2024-08-30 12:27:32 +02:00
version = "0.1.2"
2024-05-12 13:46:11 +02:00
dependencies = [
2024-12-31 03:57:40 +01:00
"env_logger",
2024-05-12 13:46:11 +02:00
"iptables",
2024-08-30 12:27:32 +02:00
"log",
"openssl",
2024-05-12 13:46:11 +02:00
"regex",
"serde",
"serde_json",
"structopt",
2024-05-12 13:46:11 +02:00
"tokio",
]
[[package]]
name = "memchr"
2024-07-21 13:01:23 +02:00
version = "2.7.4"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2024-05-12 13:46:11 +02:00
[[package]]
name = "miniz_oxide"
2024-12-31 03:57:40 +01:00
version = "0.8.2"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
2024-05-12 13:46:11 +02:00
dependencies = [
2024-09-17 01:58:21 +02:00
"adler2",
2024-05-12 13:46:11 +02:00
]
2024-07-23 22:56:03 +02:00
[[package]]
name = "mio"
2024-12-31 03:57:40 +01:00
version = "1.0.3"
2024-07-23 22:56:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
2024-07-23 22:56:03 +02:00
dependencies = [
"libc",
"wasi",
"windows-sys 0.52.0",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "nix"
version = "0.29.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2024-05-12 13:46:11 +02:00
dependencies = [
2024-07-21 13:01:23 +02:00
"bitflags 2.6.0",
2024-05-12 13:46:11 +02:00
"cfg-if",
"cfg_aliases",
2024-05-12 13:46:11 +02:00
"libc",
]
[[package]]
name = "object"
2024-12-31 03:57:40 +01:00
version = "0.36.7"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
2024-05-12 13:46:11 +02:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2024-11-28 13:34:08 +01:00
version = "1.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
[[package]]
name = "openssl"
2024-11-28 13:34:08 +01:00
version = "0.10.68"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
dependencies = [
"bitflags 2.6.0",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
2024-12-31 03:57:40 +01:00
"syn 2.0.93",
]
[[package]]
name = "openssl-src"
2024-11-28 13:34:08 +01:00
version = "300.4.1+3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "faa4eac4138c62414b5622d1b31c5c304f34b406b013c079c2bbc652fdd6678c"
dependencies = [
"cc",
]
[[package]]
name = "openssl-sys"
2024-11-28 13:34:08 +01:00
version = "0.9.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
dependencies = [
"cc",
"libc",
"openssl-src",
"pkg-config",
"vcpkg",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "pin-project-lite"
2024-11-28 13:34:08 +01:00
version = "0.2.15"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2024-05-12 13:46:11 +02:00
[[package]]
name = "pkg-config"
2024-11-28 13:34:08 +01:00
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "proc-macro2"
2024-11-28 13:34:08 +01:00
version = "1.0.92"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2024-05-12 13:46:11 +02:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-12-31 03:57:40 +01:00
version = "1.0.38"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
2024-05-12 13:46:11 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "regex"
2024-11-28 13:34:08 +01:00
version = "1.11.1"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2024-05-12 13:46:11 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
2024-11-28 13:34:08 +01:00
version = "0.4.9"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2024-05-12 13:46:11 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2024-11-28 13:34:08 +01:00
version = "0.8.5"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2024-05-12 13:46:11 +02:00
[[package]]
name = "rustc-demangle"
2024-05-12 13:46:35 +02:00
version = "0.1.24"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 13:46:35 +02:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2024-05-12 13:46:11 +02:00
[[package]]
name = "ryu"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
[[package]]
name = "serde"
2024-12-31 03:57:40 +01:00
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-12-31 03:57:40 +01:00
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
dependencies = [
"proc-macro2",
"quote",
2024-12-31 03:57:40 +01:00
"syn 2.0.93",
]
[[package]]
name = "serde_json"
2024-12-31 03:57:40 +01:00
version = "1.0.134"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
dependencies = [
"itoa",
2024-08-09 16:07:47 +02:00
"memchr",
"ryu",
"serde",
]
2024-08-21 04:05:15 +02:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2024-05-12 13:46:11 +02:00
[[package]]
name = "signal-hook-registry"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [
"libc",
]
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "structopt"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "syn"
version = "1.0.109"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2024-05-12 13:46:11 +02:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2024-12-31 03:57:40 +01:00
version = "2.0.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "9c786062daee0d6db1132800e623df74274a0a87322d8e183338e01b3d98d058"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2024-05-12 13:46:11 +02:00
[[package]]
name = "tokio"
2024-12-31 03:57:40 +01:00
version = "1.42.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-12-31 03:57:40 +01:00
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
2024-05-12 13:46:11 +02:00
dependencies = [
"backtrace",
"libc",
2024-09-22 04:05:35 +02:00
"mio",
2024-05-12 13:46:11 +02:00
"pin-project-lite",
"signal-hook-registry",
"tokio-macros",
2024-07-23 22:56:03 +02:00
"windows-sys 0.52.0",
2024-05-12 13:46:11 +02:00
]
[[package]]
name = "tokio-macros"
2024-07-23 22:56:03 +02:00
version = "2.4.0"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-23 22:56:03 +02:00
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
2024-05-12 13:46:11 +02:00
dependencies = [
"proc-macro2",
"quote",
2024-12-31 03:57:40 +01:00
"syn 2.0.93",
2024-05-12 13:46:11 +02:00
]
[[package]]
name = "unicode-ident"
2024-11-28 13:34:08 +01:00
version = "1.0.14"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2024-05-12 13:46:11 +02:00
[[package]]
name = "unicode-segmentation"
2024-09-17 01:58:21 +02:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-17 01:58:21 +02:00
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
[[package]]
name = "unicode-width"
2024-09-22 04:05:35 +02:00
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-22 04:05:35 +02:00
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2024-12-31 03:57:40 +01:00
[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2024-08-09 16:07:47 +02:00
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-09 16:07:47 +02:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-05-12 13:46:11 +02:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[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"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-09-22 04:05:35 +02:00
"windows-targets",
2024-05-12 13:46:11 +02:00
]
2024-08-09 16:07:47 +02:00
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
2024-09-22 04:05:35 +02:00
"windows-targets",
2024-05-12 13:46:11 +02:00
]
[[package]]
name = "windows-targets"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-05-12 13:46:11 +02:00
dependencies = [
2024-09-22 04:05:35 +02:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-05-12 13:46:11 +02:00
"windows_i686_gnullvm",
2024-09-22 04:05:35 +02:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2024-05-12 13:46:11 +02:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_aarch64_msvc"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_i686_gnu"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_i686_gnullvm"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_i686_msvc"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_x86_64_gnu"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-05-12 13:46:11 +02:00
[[package]]
name = "windows_x86_64_msvc"
2024-07-21 13:01:23 +02:00
version = "0.52.6"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 13:01:23 +02:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"