mvw/Cargo.lock

597 lines
16 KiB
Text
Raw Permalink Normal View History

2024-11-19 16:17:54 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2025-05-13 13:58:04 +02:00
version = 4
2024-11-19 16:17:54 +01:00
2025-07-02 11:17:58 +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 = "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",
]
2024-11-19 16:17:54 +01:00
[[package]]
name = "bitflags"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2024-11-20 10:49:18 +01:00
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2024-11-19 16:17:54 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2025-11-20 00:06:13 +00:00
version = "4.5.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-11-20 00:06:13 +00:00
checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2025-11-20 00:06:13 +00:00
version = "4.5.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-11-20 00:06:13 +00:00
checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2025-11-20 00:06:13 +00:00
version = "4.5.49"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-11-20 00:06:13 +00:00
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2025-05-20 12:33:07 +00:00
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 12:33:07 +00:00
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
[[package]]
name = "colorchoice"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
2024-11-20 10:49:18 +01:00
[[package]]
name = "console"
2025-08-23 16:05:35 +00:00
version = "0.16.0"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "2e09ced7ebbccb63b4c65413d821f2e00ce54c5ca4514ddc6b3c892fdbcbc69d"
2024-11-20 10:49:18 +01:00
dependencies = [
"encode_unicode",
"libc",
2025-08-23 16:05:35 +00:00
"once_cell",
2024-11-20 10:49:18 +01:00
"unicode-width",
2025-08-23 16:05:35 +00:00
"windows-sys 0.60.2",
2024-11-20 10:49:18 +01:00
]
[[package]]
name = "dialoguer"
2025-08-23 16:05:35 +00:00
version = "0.12.0"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
2024-11-20 10:49:18 +01:00
dependencies = [
"console",
"shell-words",
"tempfile",
"zeroize",
]
[[package]]
name = "encode_unicode"
2025-08-23 16:05:35 +00:00
version = "1.0.0"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2024-11-20 10:49:18 +01:00
2024-11-19 16:17:54 +01:00
[[package]]
name = "errno"
2025-05-20 17:59:05 +00:00
version = "0.3.12"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 17:59:05 +00:00
checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
2024-11-19 16:17:54 +01:00
dependencies = [
"libc",
2025-08-23 16:05:35 +00:00
"windows-sys 0.59.0",
2024-11-19 16:17:54 +01:00
]
[[package]]
name = "fastrand"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
2024-11-20 10:49:18 +01:00
[[package]]
name = "getrandom"
2025-05-20 12:33:22 +00:00
version = "0.3.3"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 12:33:22 +00:00
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
2024-11-20 10:49:18 +01:00
dependencies = [
"cfg-if",
"libc",
2025-05-20 12:33:22 +00:00
"r-efi",
2024-11-20 10:49:18 +01:00
"wasi",
]
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-11-19 16:17:54 +01:00
[[package]]
name = "libc"
2025-05-20 17:59:05 +00:00
version = "0.2.172"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 17:59:05 +00:00
checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
2024-11-19 16:17:54 +01:00
[[package]]
name = "linux-raw-sys"
2025-05-20 17:59:05 +00:00
version = "0.9.4"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 17:59:05 +00:00
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2024-11-19 16:17:54 +01:00
2025-07-02 11:17:58 +02:00
[[package]]
name = "memchr"
version = "2.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
2024-11-19 16:17:54 +01:00
[[package]]
name = "mvw"
2025-05-13 13:58:04 +02:00
version = "0.1.6"
2024-11-19 16:17:54 +01:00
dependencies = [
"clap",
2024-11-20 10:49:18 +01:00
"dialoguer",
"rand",
2025-07-02 11:17:58 +02:00
"sedregex",
2024-11-19 16:17:54 +01:00
"tempfile",
]
[[package]]
name = "once_cell"
version = "1.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2024-11-20 10:49:18 +01:00
[[package]]
name = "ppv-lite86"
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
[[package]]
name = "proc-macro2"
version = "1.0.89"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
dependencies = [
"proc-macro2",
]
2025-05-20 12:33:22 +00:00
[[package]]
name = "r-efi"
version = "5.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
2024-11-20 10:49:18 +01:00
[[package]]
name = "rand"
2025-07-20 20:12:31 +00:00
version = "0.9.2"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-07-20 20:12:31 +00:00
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2024-11-20 10:49:18 +01:00
dependencies = [
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2025-05-20 12:33:22 +00:00
version = "0.9.0"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 12:33:22 +00:00
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2024-11-20 10:49:18 +01:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2025-05-20 12:33:22 +00:00
version = "0.9.3"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 12:33:22 +00:00
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2024-11-20 10:49:18 +01:00
dependencies = [
"getrandom",
]
2025-07-02 11:17:58 +02:00
[[package]]
name = "regex"
version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2024-11-19 16:17:54 +01:00
[[package]]
name = "rustix"
2025-05-20 17:59:05 +00:00
version = "1.0.7"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 17:59:05 +00:00
checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
2024-11-19 16:17:54 +01:00
dependencies = [
"bitflags",
"errno",
"libc",
"linux-raw-sys",
2025-08-23 16:05:35 +00:00
"windows-sys 0.59.0",
2025-07-02 11:17:58 +02:00
]
[[package]]
name = "sedregex"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19411e23596093f03bbd11dc45603b6329bb4bfec77b9fd13e2b9fc9b02efe3e"
dependencies = [
"regex",
2024-11-19 16:17:54 +01:00
]
2024-11-20 10:49:18 +01:00
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-11-20 10:49:18 +01:00
[[package]]
name = "syn"
version = "2.0.87"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2024-11-19 16:17:54 +01:00
[[package]]
name = "tempfile"
2025-05-20 17:59:05 +00:00
version = "3.20.0"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 17:59:05 +00:00
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2024-11-19 16:17:54 +01:00
dependencies = [
"fastrand",
2025-05-20 17:59:05 +00:00
"getrandom",
2024-11-19 16:17:54 +01:00
"once_cell",
"rustix",
2025-08-23 16:05:35 +00:00
"windows-sys 0.59.0",
2024-11-20 10:49:18 +01:00
]
[[package]]
name = "unicode-ident"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
[[package]]
name = "unicode-width"
2025-08-23 16:05:35 +00:00
version = "0.2.1"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
2024-11-20 10:49:18 +01:00
[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2024-11-20 10:49:18 +01:00
[[package]]
name = "wasi"
2025-05-20 12:33:22 +00:00
version = "0.14.2+wasi-0.2.4"
2024-11-20 10:49:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-05-20 12:33:22 +00:00
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
dependencies = [
"wit-bindgen-rt",
]
2024-11-20 10:49:18 +01:00
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows-link"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows-sys"
2025-08-23 16:05:35 +00:00
version = "0.59.0"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2024-11-19 16:17:54 +01:00
dependencies = [
2025-08-23 16:05:35 +00:00
"windows-targets 0.52.6",
2024-11-19 16:17:54 +01:00
]
[[package]]
name = "windows-sys"
2025-08-23 16:05:35 +00:00
version = "0.60.2"
2024-11-19 16:17:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2025-08-23 16:05:35 +00:00
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2024-11-19 16:17:54 +01:00
dependencies = [
2025-08-23 16:05:35 +00:00
"windows-targets 0.53.3",
2024-11-19 16:17:54 +01:00
]
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
2025-08-23 16:05:35 +00:00
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
"windows_i686_gnullvm 0.52.6",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
]
[[package]]
name = "windows-targets"
version = "0.53.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
dependencies = [
"windows-link",
"windows_aarch64_gnullvm 0.53.0",
"windows_aarch64_msvc 0.53.0",
"windows_i686_gnu 0.53.0",
"windows_i686_gnullvm 0.53.0",
"windows_i686_msvc 0.53.0",
"windows_x86_64_gnu 0.53.0",
"windows_x86_64_gnullvm 0.53.0",
"windows_x86_64_msvc 0.53.0",
2024-11-19 16:17:54 +01:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2024-11-19 16:17:54 +01:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-11-20 10:49:18 +01:00
2025-08-23 16:05:35 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.53.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2025-05-20 12:33:22 +00:00
[[package]]
name = "wit-bindgen-rt"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
dependencies = [
"bitflags",
]
2024-11-20 10:49:18 +01:00
[[package]]
name = "zerocopy"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"byteorder",
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "zeroize"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"