1
0
martillo-maldito/Cargo.lock

740 lines
19 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.
version = 3
[[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",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
"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-11-28 13:34:08 +01:00
version = "1.2.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 = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
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-08-30 12:27:32 +02:00
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[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-05-12 13:46:11 +02:00
[[package]]
name = "hermit-abi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2024-08-30 12:27:32 +02:00
[[package]]
name = "humantime"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
dependencies = [
"quick-error",
]
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",
]
[[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-11-28 13:34:08 +01:00
version = "0.2.166"
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 = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36"
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-08-30 12:27:32 +02:00
name = "logfmt_logger"
2024-06-09 15:29:00 +02:00
version = "0.1.1"
2024-08-30 12:27:32 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60da8a0835af8f55c23833348fae381a75380e4748465acc7faf094e426e2f0c"
dependencies = [
"env_logger",
"log",
"termcolor",
]
[[package]]
name = "martillo-maldito"
version = "0.1.2"
2024-05-12 13:46:11 +02:00
dependencies = [
"iptables",
2024-08-30 12:27:32 +02:00
"log",
"logfmt_logger",
"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-09-17 01:58:21 +02:00
version = "0.8.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 = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
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-08-21 04:05:15 +02:00
version = "1.0.2"
2024-07-23 22:56:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-21 04:05:15 +02:00
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2024-07-23 22:56:03 +02:00
dependencies = [
"hermit-abi 0.3.9",
"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-11-28 13:34:08 +01:00
version = "0.36.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 = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
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-11-28 13:34:08 +01:00
"syn 2.0.89",
]
[[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",
]
2024-08-30 12:27:32 +02:00
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2024-05-12 13:46:11 +02:00
[[package]]
name = "quote"
2024-08-30 12:27:32 +02:00
version = "1.0.37"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-30 12:27:32 +02:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
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-11-28 13:34:08 +01:00
version = "1.0.215"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-11-28 13:34:08 +01:00
version = "1.0.215"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 13:34:08 +01:00
"syn 2.0.89",
]
[[package]]
name = "serde_json"
2024-11-28 13:34:08 +01:00
version = "1.0.133"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
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-11-28 13:34:08 +01:00
version = "2.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 13:34:08 +01:00
checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2024-08-30 12:27:32 +02:00
[[package]]
name = "termcolor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
dependencies = [
"winapi-util",
]
[[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-11-28 13:34:08 +01:00
version = "1.41.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 = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
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-11-28 13:34:08 +01:00
"syn 2.0.89",
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"
[[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"
2024-05-12 13:46:11 +02:00
[[package]]
name = "winapi-util"
2024-08-09 16:07:47 +02:00
version = "0.1.9"
2024-05-12 13:46:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-09 16:07:47 +02:00
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2024-05-12 13:46:11 +02:00
dependencies = [
2024-08-09 16:07:47 +02:00
"windows-sys 0.59.0",
2024-05-12 13:46:11 +02:00
]
[[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"