tesla-charge-controller/Cargo.lock

3457 lines
84 KiB
Plaintext
Raw Permalink Normal View History

2023-12-25 18:05:47 +11:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-12-25 21:22:08 +11:00
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2023-12-27 17:34:48 +11:00
[[package]]
name = "aho-corasick"
2024-05-24 19:43:40 +10:00
version = "1.1.3"
2023-12-27 17:34:48 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2023-12-27 17:34:48 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-27 17:34:48 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anstream"
2024-05-24 19:43:40 +10:00
version = "0.6.14"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
2023-12-25 21:22:08 +11:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-05-24 19:43:40 +10:00
"is_terminal_polyfill",
2023-12-25 21:22:08 +11:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-05-24 19:43:40 +10:00
version = "1.0.7"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
2023-12-25 21:22:08 +11:00
[[package]]
name = "anstyle-parse"
2024-05-24 19:43:40 +10:00
version = "0.2.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
2023-12-25 21:22:08 +11:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-05-24 19:43:40 +10:00
version = "1.0.3"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
2023-12-25 21:22:08 +11:00
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
2024-05-24 19:43:40 +10:00
version = "3.0.3"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
2023-12-25 21:22:08 +11:00
dependencies = [
"anstyle",
"windows-sys 0.52.0",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "async-stream"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "async-trait"
2024-05-24 19:43:40 +10:00
version = "0.1.80"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
2023-12-28 12:41:05 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "atomic"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
[[package]]
name = "atomic"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
dependencies = [
"bytemuck",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2023-12-25 21:22:08 +11:00
[[package]]
name = "autocfg"
2024-05-24 19:43:40 +10:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
[[package]]
name = "aws-lc-rs"
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "474d7cec9d0a1126fad1b224b767fcbf351c23b0309bb21ec210bcfd379926a5"
dependencies = [
"aws-lc-sys",
"mirai-annotations",
"paste",
"zeroize",
]
[[package]]
name = "aws-lc-sys"
version = "0.17.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "7505fc3cb7acbf42699a43a79dd9caa4ed9e99861dfbb837c5c0fb5a0a8d2980"
dependencies = [
2024-07-09 10:32:51 +10:00
"bindgen",
2024-05-24 19:43:40 +10:00
"cc",
"cmake",
"dunce",
"fs_extra",
"libc",
"paste",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "backtrace"
2024-05-24 19:43:40 +10:00
version = "0.3.71"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
2023-12-25 21:22:08 +11:00
dependencies = [
"addr2line",
"cc",
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "backtrace-ext"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
dependencies = [
"backtrace",
]
[[package]]
name = "base64"
2024-05-24 19:43:40 +10:00
version = "0.21.7"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2023-12-25 21:22:08 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "binascii"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
2024-05-24 19:43:40 +10:00
[[package]]
name = "bindgen"
version = "0.69.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
dependencies = [
"bitflags 2.5.0",
2024-07-09 10:32:51 +10:00
"cexpr",
"clang-sys",
2024-05-24 19:43:40 +10:00
"itertools",
2024-07-09 10:32:51 +10:00
"lazy_static",
2024-05-24 19:43:40 +10:00
"lazycell",
2024-07-09 10:32:51 +10:00
"log",
2024-05-24 19:43:40 +10:00
"prettyplease",
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
"regex",
2024-05-24 19:43:40 +10:00
"rustc-hash",
"shlex",
"syn 2.0.66",
2024-07-09 10:32:51 +10:00
"which",
2024-01-18 16:26:44 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2024-05-24 19:43:40 +10:00
version = "2.5.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
2023-12-25 21:22:08 +11:00
dependencies = [
"serde",
]
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "bumpalo"
2024-05-24 19:43:40 +10:00
version = "3.16.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2023-12-25 21:22:08 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "bytemuck"
2024-05-24 19:43:40 +10:00
version = "1.16.0"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
2023-12-28 12:41:05 +11:00
2024-07-09 10:32:51 +10:00
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2023-12-25 21:22:08 +11:00
[[package]]
name = "bytes"
2024-05-24 19:43:40 +10:00
version = "1.6.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2023-12-25 21:22:08 +11:00
[[package]]
name = "cc"
2024-05-24 19:43:40 +10:00
version = "1.0.98"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"jobserver",
2023-12-25 21:22:08 +11:00
"libc",
2024-05-24 19:43:40 +10:00
"once_cell",
2023-12-25 21:22:08 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "cexpr"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
dependencies = [
2024-07-09 10:32:51 +10:00
"nom",
2024-01-18 16:26:44 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2024-05-24 19:43:40 +10:00
version = "0.4.38"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
2023-12-25 21:22:08 +11:00
dependencies = [
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
2024-05-24 19:43:40 +10:00
"windows-targets 0.52.5",
2023-12-25 21:22:08 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "clang-sys"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
dependencies = [
2024-07-09 10:32:51 +10:00
"glob",
2024-05-24 19:43:40 +10:00
"libc",
2024-07-09 10:32:51 +10:00
"libloading",
2024-01-18 16:26:44 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "clap"
2024-05-24 19:43:40 +10:00
version = "4.5.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
2023-12-25 21:22:08 +11:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-05-24 19:43:40 +10:00
version = "4.5.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
2023-12-25 21:22:08 +11:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2024-07-09 10:32:51 +10:00
"strsim",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "clap_derive"
2024-05-24 19:43:40 +10:00
version = "4.5.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"heck 0.5.0",
2023-12-25 21:22:08 +11:00
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "clap_lex"
2024-05-24 19:43:40 +10:00
version = "0.7.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
[[package]]
name = "cmake"
version = "0.1.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
dependencies = [
"cc",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "colorchoice"
2024-05-24 19:43:40 +10:00
version = "1.0.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
2023-12-25 21:22:08 +11:00
[[package]]
name = "colored_json"
2024-05-24 19:43:40 +10:00
version = "5.0.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e35980a1b846f8e3e359fd18099172a0857140ba9230affc4f71348081e039b6"
2023-12-25 21:22:08 +11:00
dependencies = [
"serde",
"serde_json",
2024-05-24 19:43:40 +10:00
"yansi",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
2024-05-24 19:43:40 +10:00
version = "0.17.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
2023-12-25 21:22:08 +11:00
dependencies = [
"percent-encoding",
2024-07-09 10:32:51 +10:00
"time",
2023-12-25 21:22:08 +11:00
"version_check",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "cookie"
2024-05-24 19:43:40 +10:00
version = "0.18.1"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
2023-12-28 12:41:05 +11:00
dependencies = [
"percent-encoding",
2024-07-09 10:32:51 +10:00
"time",
2023-12-28 12:41:05 +11:00
"version_check",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "cookie_store"
2024-05-24 19:43:40 +10:00
version = "0.20.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"cookie 0.17.0",
"idna 0.3.0",
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"publicsuffix",
"serde",
"serde_derive",
"serde_json",
2024-07-09 10:32:51 +10:00
"time",
2023-12-25 21:22:08 +11:00
"url",
]
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
[[package]]
name = "cpufeatures"
2024-05-24 19:43:40 +10:00
version = "0.2.12"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2023-12-25 21:22:08 +11:00
dependencies = [
"libc",
]
2024-01-23 12:14:04 +11:00
[[package]]
name = "crossbeam-channel"
2024-05-24 19:43:40 +10:00
version = "0.5.13"
2024-01-23 12:14:04 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
2024-01-23 12:14:04 +11:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-05-24 19:43:40 +10:00
version = "0.8.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
2023-12-25 21:22:08 +11:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "deranged"
2024-05-24 19:43:40 +10:00
version = "0.3.11"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2023-12-25 21:22:08 +11:00
dependencies = [
"powerfmt",
]
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-25 21:22:08 +11:00
"rustc_version",
"syn 1.0.109",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "devise"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6eacefd3f541c66fc61433d65e54e0e46e0a029a819a7dbbc7a7b489e8a85f8"
dependencies = [
"devise_codegen",
"devise_core",
]
[[package]]
name = "devise_codegen"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8cf4b8dd484ede80fd5c547592c46c3745a617c8af278e2b72bea86b2dfed6"
dependencies = [
"devise_core",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "devise_core"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35b50dba0afdca80b187392b24f2499a88c336d5a8493e4b4ccfb608708be56a"
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2023-12-28 12:41:05 +11:00
"proc-macro2",
"proc-macro2-diagnostics",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "dunce"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
2023-12-28 12:41:05 +11:00
[[package]]
name = "either"
2024-05-24 19:43:40 +10:00
version = "1.12.0"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
2023-12-28 12:41:05 +11:00
2023-12-25 21:22:08 +11:00
[[package]]
name = "encoding_rs"
2024-05-24 19:43:40 +10:00
version = "0.8.34"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
]
2024-01-09 11:33:11 +11:00
[[package]]
name = "env_logger"
2024-05-24 19:43:40 +10:00
version = "0.10.2"
2024-01-09 11:33:11 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
2024-01-09 11:33:11 +11:00
dependencies = [
"humantime",
"is-terminal",
2024-07-09 10:32:51 +10:00
"log",
"regex",
2024-01-09 11:33:11 +11:00
"termcolor",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
2024-05-24 19:43:40 +10:00
version = "0.3.9"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
2023-12-25 21:22:08 +11:00
dependencies = [
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "fastrand"
2024-05-24 19:43:40 +10:00
version = "2.1.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
2023-12-25 21:22:08 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "figment"
2024-05-24 19:43:40 +10:00
version = "0.10.19"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
2023-12-28 12:41:05 +11:00
dependencies = [
"atomic 0.6.0",
"pear",
"serde",
"toml",
"uncased",
"version_check",
]
2024-01-23 12:14:04 +11:00
[[package]]
name = "filetime"
version = "0.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2024-01-23 12:14:04 +11:00
"libc",
2024-05-24 19:43:40 +10:00
"redox_syscall 0.4.1",
2024-01-23 12:14:04 +11:00
"windows-sys 0.52.0",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[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"
[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "fs_extra"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
2024-01-23 12:14:04 +11:00
[[package]]
name = "fsevent-sys"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
dependencies = [
"libc",
]
2023-12-27 17:38:38 +11:00
[[package]]
name = "futures"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
dependencies = [
"futures-channel",
"futures-core",
2024-07-09 10:32:51 +10:00
"futures-executor",
2023-12-27 17:38:38 +11:00
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "futures-channel"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
2023-12-27 17:38:38 +11:00
"futures-sink",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "futures-core"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2024-07-09 10:32:51 +10:00
[[package]]
name = "futures-executor"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2023-12-27 17:38:38 +11:00
[[package]]
name = "futures-io"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2024-07-09 10:32:51 +10:00
[[package]]
name = "futures-macro"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.66",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "futures-sink"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
name = "futures-util"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
2023-12-27 17:38:38 +11:00
"futures-channel",
2023-12-25 21:22:08 +11:00
"futures-core",
2023-12-27 17:38:38 +11:00
"futures-io",
2024-07-09 10:32:51 +10:00
"futures-macro",
2023-12-27 17:38:38 +11:00
"futures-sink",
2023-12-25 21:22:08 +11:00
"futures-task",
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-25 21:22:08 +11:00
"pin-project-lite",
"pin-utils",
2023-12-27 17:38:38 +11:00
"slab",
2023-12-25 21:22:08 +11:00
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "generator"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
dependencies = [
"cc",
"libc",
2024-07-09 10:32:51 +10:00
"log",
2023-12-28 12:41:05 +11:00
"rustversion",
"windows",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-05-24 19:43:40 +10:00
version = "0.2.15"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"libc",
2024-07-09 10:32:51 +10:00
"wasi",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2023-12-28 12:41:05 +11:00
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2023-12-25 21:22:08 +11:00
[[package]]
name = "h2"
2024-05-24 19:43:40 +10:00
version = "0.3.26"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
2023-12-25 21:22:08 +11:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2024-05-24 19:43:40 +10:00
"http 0.2.12",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "h2"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
dependencies = [
"atomic-waker",
"bytes",
"fnv",
"futures-core",
"futures-sink",
"http 1.1.0",
2023-12-25 21:22:08 +11:00
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
2024-05-24 19:43:40 +10:00
version = "0.14.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2023-12-25 21:22:08 +11:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2024-05-24 19:43:40 +10:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2023-12-25 21:22:08 +11:00
[[package]]
name = "hermit-abi"
2024-05-24 19:43:40 +10:00
version = "0.3.9"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
[[package]]
name = "home"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
dependencies = [
"windows-sys 0.52.0",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "http"
2024-05-24 19:43:40 +10:00
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "1.1.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
2023-12-25 21:22:08 +11:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
2024-05-24 19:43:40 +10:00
"http 0.2.12",
"pin-project-lite",
]
[[package]]
name = "http-body"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
dependencies = [
"bytes",
"http 1.1.0",
]
[[package]]
name = "http-body-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
dependencies = [
"bytes",
"futures-core",
"http 1.1.0",
"http-body 1.0.0",
2023-12-25 21:22:08 +11:00
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2024-01-09 11:33:11 +11:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2023-12-25 21:22:08 +11:00
[[package]]
name = "hyper"
version = "0.14.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
2024-05-24 19:43:40 +10:00
"h2 0.3.26",
"http 0.2.12",
"http-body 0.4.6",
2023-12-25 21:22:08 +11:00
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "hyper"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2 0.4.5",
"http 1.1.0",
"http-body 1.0.0",
"httparse",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
"want",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "hyper-rustls"
2024-05-24 19:43:40 +10:00
version = "0.26.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
2023-12-25 21:22:08 +11:00
dependencies = [
"futures-util",
2024-05-24 19:43:40 +10:00
"http 1.1.0",
"hyper 1.3.1",
"hyper-util",
"rustls 0.22.4",
"rustls-pki-types",
2023-12-25 21:22:08 +11:00
"tokio",
"tokio-rustls",
2024-05-24 19:43:40 +10:00
"tower-service",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "hyper-tls"
2024-05-24 19:43:40 +10:00
version = "0.6.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
2023-12-25 21:22:08 +11:00
dependencies = [
"bytes",
2024-05-24 19:43:40 +10:00
"http-body-util",
"hyper 1.3.1",
"hyper-util",
2023-12-25 21:22:08 +11:00
"native-tls",
"tokio",
"tokio-native-tls",
2024-05-24 19:43:40 +10:00
"tower-service",
]
[[package]]
name = "hyper-util"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http 1.1.0",
"http-body 1.0.0",
"hyper 1.3.1",
"pin-project-lite",
"socket2",
"tokio",
"tower",
"tower-service",
"tracing",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "iana-time-zone"
2024-05-24 19:43:40 +10:00
version = "0.1.60"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
2023-12-25 21:22:08 +11:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "idna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2024-01-22 10:38:34 +11:00
[[package]]
name = "if_chain"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
2023-12-28 12:41:05 +11:00
[[package]]
name = "include_dir"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e"
dependencies = [
"include_dir_macros",
]
[[package]]
name = "include_dir_macros"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-28 12:41:05 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "indexmap"
2024-05-24 19:43:40 +10:00
version = "2.2.6"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
2023-12-25 21:22:08 +11:00
dependencies = [
"equivalent",
2024-01-28 10:24:00 +11:00
"hashbrown",
2023-12-28 12:41:05 +11:00
"serde",
2023-12-25 21:22:08 +11:00
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "inlinable_string"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
2024-01-23 12:14:04 +11:00
[[package]]
name = "inotify"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
dependencies = [
"bitflags 1.3.2",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "io-kit-sys"
2024-05-24 19:43:40 +10:00
version = "0.4.1"
2024-01-10 15:22:28 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "617ee6cf8e3f66f3b4ea67a4058564628cde41901316e19f559e14c7c72c5e7b"
2024-01-10 15:22:28 +11:00
dependencies = [
"core-foundation-sys",
"mach2",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "ipnet"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
[[package]]
name = "is-terminal"
2024-05-24 19:43:40 +10:00
version = "0.4.12"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"hermit-abi",
2024-05-24 19:43:40 +10:00
"libc",
"windows-sys 0.52.0",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "is_ci"
2024-05-24 19:43:40 +10:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
[[package]]
name = "is_terminal_polyfill"
version = "1.70.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "itoa"
2024-05-24 19:43:40 +10:00
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]]
name = "jobserver"
version = "0.1.31"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
dependencies = [
"libc",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "js-sys"
2024-05-24 19:43:40 +10:00
version = "0.3.69"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
2023-12-25 21:22:08 +11:00
dependencies = [
"wasm-bindgen",
]
2024-01-23 12:14:04 +11:00
[[package]]
name = "kqueue"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c"
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
dependencies = [
"bitflags 1.3.2",
"libc",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2024-05-24 19:43:40 +10:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2023-12-25 21:22:08 +11:00
[[package]]
name = "libc"
2024-05-24 19:43:40 +10:00
version = "0.2.155"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2023-12-25 21:22:08 +11:00
2024-05-24 19:43:40 +10:00
[[package]]
name = "libloading"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2024-05-24 19:43:40 +10:00
"windows-targets 0.52.5",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "libudev"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78b324152da65df7bb95acfcaab55e3097ceaab02fb19b228a9eb74d55f135e0"
dependencies = [
"libc",
"libudev-sys",
]
[[package]]
name = "libudev-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324"
dependencies = [
"libc",
"pkg-config",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "linux-raw-sys"
2024-05-24 19:43:40 +10:00
version = "0.4.14"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2023-12-25 21:22:08 +11:00
[[package]]
name = "lock_api"
2024-05-24 19:43:40 +10:00
version = "0.4.12"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2023-12-25 21:22:08 +11:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2024-05-24 19:43:40 +10:00
version = "0.4.21"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2023-12-25 21:22:08 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "loom"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-28 12:41:05 +11:00
"generator",
"scoped-tls",
"serde",
"serde_json",
"tracing",
"tracing-subscriber",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "mach2"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
dependencies = [
"libc",
]
2023-12-27 17:34:48 +11:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
2024-01-18 16:26:44 +11:00
[[package]]
name = "memchr"
2024-07-09 10:32:51 +10:00
version = "2.7.2"
2024-01-18 16:26:44 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-09 10:32:51 +10:00
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
2024-01-18 16:26:44 +11:00
2023-12-25 21:22:08 +11:00
[[package]]
2024-07-09 10:32:51 +10:00
name = "memoffset"
version = "0.7.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-09 10:32:51 +10:00
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "miette"
2024-05-24 19:43:40 +10:00
version = "7.2.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1"
2023-12-25 21:22:08 +11:00
dependencies = [
"backtrace",
"backtrace-ext",
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"miette-derive",
"owo-colors",
"supports-color",
"supports-hyperlinks",
"supports-unicode",
"terminal_size",
2024-07-09 10:32:51 +10:00
"textwrap",
2023-12-25 21:22:08 +11:00
"thiserror",
"unicode-width",
]
[[package]]
name = "miette-derive"
2024-05-24 19:43:40 +10:00
version = "7.2.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2024-05-24 19:43:40 +10:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-12-25 21:22:08 +11:00
[[package]]
name = "miniz_oxide"
2024-05-24 19:43:40 +10:00
version = "0.7.3"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
2023-12-25 21:22:08 +11:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2024-05-24 19:43:40 +10:00
version = "0.8.11"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2023-12-25 21:22:08 +11:00
dependencies = [
"libc",
2024-07-09 10:32:51 +10:00
"log",
"wasi",
2023-12-25 21:22:08 +11:00
"windows-sys 0.48.0",
]
2024-07-09 10:32:51 +10:00
[[package]]
name = "mio-serial"
version = "5.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "20a4c60ca5c9c0e114b3bd66ff4aa5f9b2b175442be51ca6c4365d687a97a2ac"
dependencies = [
"log",
"mio",
"nix",
"serialport",
"winapi",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "mirai-annotations"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9be0862c1b3f26a88803c4a49de6889c10e608b3ee9344e6ef5b45fb37ad3d1"
2023-12-28 12:41:05 +11:00
[[package]]
name = "multer"
2024-05-24 19:43:40 +10:00
version = "3.1.0"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
2023-12-28 12:41:05 +11:00
dependencies = [
"bytes",
"encoding_rs",
"futures-util",
2024-05-24 19:43:40 +10:00
"http 1.1.0",
2023-12-28 12:41:05 +11:00
"httparse",
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-28 12:41:05 +11:00
"mime",
"spin",
"tokio",
"tokio-util",
"version_check",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
2024-07-09 10:32:51 +10:00
"lazy_static",
2023-12-25 21:22:08 +11:00
"libc",
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "nix"
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
dependencies = [
"bitflags 1.3.2",
2024-07-09 10:32:51 +10:00
"cfg-if",
2024-01-10 15:22:28 +11:00
"libc",
2024-07-09 10:32:51 +10:00
"memoffset",
"pin-utils",
2024-01-18 16:26:44 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
2024-07-09 10:32:51 +10:00
"memchr",
2024-05-24 19:43:40 +10:00
"minimal-lexical",
]
2024-01-23 12:14:04 +11:00
[[package]]
name = "notify"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2024-01-23 12:14:04 +11:00
"crossbeam-channel",
"filetime",
"fsevent-sys",
"inotify",
"kqueue",
"libc",
2024-07-09 10:32:51 +10:00
"log",
2024-01-23 12:14:04 +11:00
"mio",
"walkdir",
"windows-sys 0.48.0",
]
[[package]]
name = "notify-debouncer-mini"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
dependencies = [
2024-07-09 10:32:51 +10:00
"log",
2024-01-23 12:14:04 +11:00
"notify",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
2024-07-09 10:32:51 +10:00
"winapi",
2023-12-25 21:22:08 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2023-12-25 21:22:08 +11:00
[[package]]
name = "num-traits"
2024-05-24 19:43:40 +10:00
version = "0.2.19"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2023-12-25 21:22:08 +11:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
2024-07-09 10:32:51 +10:00
"hermit-abi",
2023-12-25 21:22:08 +11:00
"libc",
]
[[package]]
name = "object"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "once_cell"
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "openssl"
2024-05-24 19:43:40 +10:00
version = "0.10.64"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"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",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2024-05-24 19:43:40 +10:00
version = "0.9.102"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
2023-12-25 21:22:08 +11:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "owo-colors"
2024-05-24 19:43:40 +10:00
version = "4.0.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
2023-12-25 21:22:08 +11:00
[[package]]
name = "parking_lot"
2024-05-24 19:43:40 +10:00
version = "0.12.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
2023-12-25 21:22:08 +11:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-05-24 19:43:40 +10:00
version = "0.9.10"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"libc",
2024-05-24 19:43:40 +10:00
"redox_syscall 0.5.1",
2023-12-25 21:22:08 +11:00
"smallvec",
2024-05-24 19:43:40 +10:00
"windows-targets 0.52.5",
2023-12-25 21:22:08 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2023-12-28 12:41:05 +11:00
[[package]]
name = "pear"
2024-05-24 19:43:40 +10:00
version = "0.2.9"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
2023-12-28 12:41:05 +11:00
dependencies = [
"inlinable_string",
"pear_codegen",
2024-05-24 19:43:40 +10:00
"yansi",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "pear_codegen"
2024-05-24 19:43:40 +10:00
version = "0.2.9"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
2023-12-28 12:41:05 +11:00
dependencies = [
"proc-macro2",
"proc-macro2-diagnostics",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2024-05-24 19:43:40 +10:00
[[package]]
name = "pin-project"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "pin-project-lite"
2024-05-24 19:43:40 +10:00
version = "0.2.14"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2023-12-25 21:22:08 +11:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkce"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e228dbe2aebd82de09c914fe28d36d3170ed5192e8d52b9c070ee0794519c2d3"
dependencies = [
2024-05-24 19:43:40 +10:00
"base64 0.21.7",
2024-07-09 10:32:51 +10:00
"rand",
2023-12-25 21:22:08 +11:00
"sha2",
]
[[package]]
name = "pkg-config"
2024-05-24 19:43:40 +10:00
version = "0.3.30"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2023-12-25 21:22:08 +11:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2024-05-24 19:43:40 +10:00
[[package]]
name = "prettyplease"
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
dependencies = [
"proc-macro2",
"syn 2.0.66",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "proc-macro2"
2024-05-24 19:43:40 +10:00
version = "1.0.83"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43"
2023-12-25 21:22:08 +11:00
dependencies = [
"unicode-ident",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "proc-macro2-diagnostics"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
"version_check",
2024-05-24 19:43:40 +10:00
"yansi",
2023-12-28 12:41:05 +11:00
]
2024-01-09 11:11:16 +11:00
[[package]]
name = "prometheus"
2024-05-24 19:43:40 +10:00
version = "0.13.4"
2024-01-09 11:11:16 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
2024-01-09 11:11:16 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2024-01-09 11:11:16 +11:00
"fnv",
2024-07-09 10:32:51 +10:00
"lazy_static",
"memchr",
2024-01-09 11:11:16 +11:00
"parking_lot",
"protobuf",
"thiserror",
]
[[package]]
name = "protobuf"
version = "2.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
2023-12-25 21:22:08 +11:00
[[package]]
name = "psl-types"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
[[package]]
name = "publicsuffix"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
dependencies = [
"idna 0.3.0",
"psl-types",
]
[[package]]
name = "quote"
2024-05-24 19:43:40 +10:00
version = "1.0.36"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
2024-07-09 10:32:51 +10:00
"rand_core",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2024-07-09 10:32:51 +10:00
"rand_core",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "redox_syscall"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
dependencies = [
"bitflags 2.5.0",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "ref-cast"
2024-05-24 19:43:40 +10:00
version = "1.0.23"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "ccf0a6f84d5f1d581da8b41b47ec8600871962f2a528115b542b362d4b744931"
2023-12-28 12:41:05 +11:00
dependencies = [
"ref-cast-impl",
]
[[package]]
name = "ref-cast-impl"
2024-05-24 19:43:40 +10:00
version = "1.0.23"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "bcc303e793d3734489387d205e9b186fac9c6cfacedd98cbb2e8a5943595f3e6"
2023-12-28 12:41:05 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
]
2023-12-27 17:34:48 +11:00
[[package]]
name = "regex"
2024-05-24 19:43:40 +10:00
version = "1.10.4"
2023-12-27 17:34:48 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2023-12-27 17:34:48 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"aho-corasick",
"memchr",
2024-05-24 19:43:40 +10:00
"regex-automata 0.4.6",
"regex-syntax 0.8.3",
2023-12-27 17:34:48 +11:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
2024-05-24 19:43:40 +10:00
version = "0.4.6"
2023-12-27 17:34:48 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2023-12-27 17:34:48 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"aho-corasick",
"memchr",
2024-05-24 19:43:40 +10:00
"regex-syntax 0.8.3",
2023-12-27 17:34:48 +11:00
]
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
2024-05-24 19:43:40 +10:00
version = "0.8.3"
2023-12-27 17:34:48 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2023-12-27 17:34:48 +11:00
2023-12-25 21:22:08 +11:00
[[package]]
name = "reqwest"
2024-05-24 19:43:40 +10:00
version = "0.12.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"base64 0.22.1",
2023-12-25 21:22:08 +11:00
"bytes",
2024-05-24 19:43:40 +10:00
"cookie 0.17.0",
2023-12-25 21:22:08 +11:00
"cookie_store",
"encoding_rs",
"futures-core",
"futures-util",
2024-05-24 19:43:40 +10:00
"h2 0.4.5",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
"hyper 1.3.1",
2023-12-25 21:22:08 +11:00
"hyper-rustls",
"hyper-tls",
2024-05-24 19:43:40 +10:00
"hyper-util",
2023-12-25 21:22:08 +11:00
"ipnet",
"js-sys",
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
2024-05-24 19:43:40 +10:00
"rustls 0.22.4",
2023-12-25 21:22:08 +11:00
"rustls-pemfile",
2024-05-24 19:43:40 +10:00
"rustls-pki-types",
2023-12-25 21:22:08 +11:00
"serde",
"serde_json",
"serde_urlencoded",
2024-05-24 19:43:40 +10:00
"sync_wrapper",
2023-12-25 21:22:08 +11:00
"system-configuration",
"tokio",
"tokio-native-tls",
"tokio-rustls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg",
]
[[package]]
name = "ring"
2024-05-24 19:43:40 +10:00
version = "0.17.8"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2023-12-25 21:22:08 +11:00
dependencies = [
"cc",
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"getrandom",
"libc",
"spin",
"untrusted",
2024-05-24 19:43:40 +10:00
"windows-sys 0.52.0",
2023-12-25 21:22:08 +11:00
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "rocket"
2024-05-24 19:43:40 +10:00
version = "0.5.1"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a516907296a31df7dc04310e7043b61d71954d703b603cc6867a026d7e72d73f"
2023-12-28 12:41:05 +11:00
dependencies = [
"async-stream",
"async-trait",
"atomic 0.5.3",
"binascii",
"bytes",
"either",
"figment",
"futures",
"indexmap",
2024-07-09 10:32:51 +10:00
"log",
"memchr",
2023-12-28 12:41:05 +11:00
"multer",
"num_cpus",
"parking_lot",
"pin-project-lite",
2024-07-09 10:32:51 +10:00
"rand",
2023-12-28 12:41:05 +11:00
"ref-cast",
"rocket_codegen",
"rocket_http",
"serde",
"serde_json",
"state",
"tempfile",
2024-07-09 10:32:51 +10:00
"time",
2023-12-28 12:41:05 +11:00
"tokio",
"tokio-stream",
"tokio-util",
"ubyte",
"version_check",
2024-05-24 19:43:40 +10:00
"yansi",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "rocket_codegen"
2024-05-24 19:43:40 +10:00
version = "0.5.1"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "575d32d7ec1a9770108c879fc7c47815a80073f96ca07ff9525a94fcede1dd46"
2023-12-28 12:41:05 +11:00
dependencies = [
"devise",
2024-07-09 10:32:51 +10:00
"glob",
2023-12-28 12:41:05 +11:00
"indexmap",
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-28 12:41:05 +11:00
"rocket_http",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-28 12:41:05 +11:00
"unicode-xid",
"version_check",
]
[[package]]
name = "rocket_http"
2024-05-24 19:43:40 +10:00
version = "0.5.1"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e274915a20ee3065f611c044bd63c40757396b6dbc057d6046aec27f14f882b9"
2023-12-28 12:41:05 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"cookie 0.18.1",
2023-12-28 12:41:05 +11:00
"either",
"futures",
2024-05-24 19:43:40 +10:00
"http 0.2.12",
"hyper 0.14.28",
2023-12-28 12:41:05 +11:00
"indexmap",
2024-07-09 10:32:51 +10:00
"log",
"memchr",
2023-12-28 12:41:05 +11:00
"pear",
"percent-encoding",
"pin-project-lite",
"ref-cast",
"serde",
"smallvec",
"stable-pattern",
"state",
2024-07-09 10:32:51 +10:00
"time",
2023-12-28 12:41:05 +11:00
"tokio",
"uncased",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "ron"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
dependencies = [
2024-05-24 19:43:40 +10:00
"base64 0.21.7",
"bitflags 2.5.0",
2023-12-25 21:22:08 +11:00
"serde",
"serde_derive",
]
[[package]]
name = "rustc-demangle"
2024-05-24 19:43:40 +10:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
[[package]]
name = "rustc-hash"
version = "1.1.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2023-12-25 21:22:08 +11:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "rustix"
2024-05-24 19:43:40 +10:00
version = "0.38.34"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2023-12-25 21:22:08 +11:00
"errno",
"libc",
"linux-raw-sys",
"windows-sys 0.52.0",
]
[[package]]
name = "rustls"
2024-05-24 19:43:40 +10:00
version = "0.22.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"ring",
2024-05-24 19:43:40 +10:00
"rustls-pki-types",
"rustls-webpki",
"subtle",
"zeroize",
2023-12-25 21:22:08 +11:00
]
2023-12-27 12:20:45 +11:00
[[package]]
name = "rustls"
2024-05-24 19:43:40 +10:00
version = "0.23.8"
2023-12-27 12:20:45 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "79adb16721f56eb2d843e67676896a61ce7a0fa622dc18d3e372477a029d2740"
2023-12-27 12:20:45 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"aws-lc-rs",
2024-07-09 10:32:51 +10:00
"log",
2024-05-24 19:43:40 +10:00
"once_cell",
2023-12-27 12:20:45 +11:00
"rustls-pki-types",
2024-05-24 19:43:40 +10:00
"rustls-webpki",
2023-12-27 12:20:45 +11:00
"subtle",
"zeroize",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "rustls-pemfile"
2024-05-24 19:43:40 +10:00
version = "2.1.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"base64 0.22.1",
"rustls-pki-types",
2023-12-25 21:22:08 +11:00
]
2023-12-27 12:20:45 +11:00
[[package]]
name = "rustls-pki-types"
2024-05-24 19:43:40 +10:00
version = "1.7.0"
2023-12-27 12:20:45 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
2023-12-27 12:20:45 +11:00
2023-12-25 21:22:08 +11:00
[[package]]
name = "rustls-webpki"
2024-05-24 19:43:40 +10:00
version = "0.102.4"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
2023-12-27 12:20:45 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"aws-lc-rs",
2023-12-27 12:20:45 +11:00
"ring",
"rustls-pki-types",
"untrusted",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "rustversion"
2024-05-24 19:43:40 +10:00
version = "1.0.17"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
2023-12-25 21:22:08 +11:00
[[package]]
name = "ryu"
2024-05-24 19:43:40 +10:00
version = "1.0.18"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2023-12-25 21:22:08 +11:00
2024-01-23 12:14:04 +11:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "schannel"
2024-05-24 19:43:40 +10:00
version = "0.1.23"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"windows-sys 0.52.0",
2023-12-25 21:22:08 +11:00
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2023-12-25 21:22:08 +11:00
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "security-framework"
2024-05-24 19:43:40 +10:00
version = "2.11.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2023-12-25 21:22:08 +11:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2024-05-24 19:43:40 +10:00
version = "2.11.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
2023-12-25 21:22:08 +11:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
2024-05-24 19:43:40 +10:00
version = "1.0.23"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2023-12-25 21:22:08 +11:00
[[package]]
name = "serde"
2024-05-24 19:43:40 +10:00
version = "1.0.202"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
2023-12-25 21:22:08 +11:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-05-24 19:43:40 +10:00
version = "1.0.202"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "serde_json"
2024-05-24 19:43:40 +10:00
version = "1.0.117"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
2023-12-25 21:22:08 +11:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "serde_spanned"
2024-05-24 19:43:40 +10:00
version = "0.6.6"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
2023-12-28 12:41:05 +11:00
dependencies = [
"serde",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "serialport"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f5a15d0be940df84846264b09b51b10b931fb2f275becb80934e3568a016828"
dependencies = [
2024-05-24 19:43:40 +10:00
"bitflags 2.5.0",
2024-07-09 10:32:51 +10:00
"cfg-if",
2024-01-10 15:22:28 +11:00
"core-foundation-sys",
"io-kit-sys",
"libudev",
"mach2",
"nix",
2024-07-09 10:32:51 +10:00
"regex",
2024-01-10 15:22:28 +11:00
"scopeguard",
"unescaper",
2024-07-09 10:32:51 +10:00
"winapi",
2024-01-10 15:22:28 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"cpufeatures",
"digest",
]
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
2024-07-09 10:32:51 +10:00
"lazy_static",
2023-12-25 21:22:08 +11:00
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2023-12-25 21:22:08 +11:00
[[package]]
name = "signal-hook-registry"
2024-05-24 19:43:40 +10:00
version = "1.4.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2023-12-25 21:22:08 +11:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2024-05-24 19:43:40 +10:00
version = "1.13.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2023-12-25 21:22:08 +11:00
[[package]]
name = "smawk"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
[[package]]
name = "socket2"
2024-05-24 19:43:40 +10:00
version = "0.5.7"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2023-12-25 21:22:08 +11:00
dependencies = [
"libc",
2024-05-24 19:43:40 +10:00
"windows-sys 0.52.0",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2023-12-28 12:41:05 +11:00
[[package]]
name = "stable-pattern"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4564168c00635f88eaed410d5efa8131afa8d8699a612c80c455a0ba05c21045"
dependencies = [
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-28 12:41:05 +11:00
]
[[package]]
name = "state"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b8c4a4445d81357df8b1a650d0d0d6fbbbfe99d064aa5e02f3e4022061476d8"
dependencies = [
"loom",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "strsim"
2024-05-24 19:43:40 +10:00
version = "0.11.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2023-12-25 21:22:08 +11:00
[[package]]
name = "strum"
2024-05-24 19:43:40 +10:00
version = "0.26.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "5d8cec3501a5194c432b2b7976db6b7d10ec95c253208b45f83f7136aa985e29"
2023-12-25 21:22:08 +11:00
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
2024-05-24 19:43:40 +10:00
version = "0.26.2"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c6cf59daf282c0a494ba14fd21610a0325f9f90ec9d1231dea26bcb1d696c946"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"heck 0.4.1",
2023-12-25 21:22:08 +11:00
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-25 21:22:08 +11:00
"rustversion",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
2023-12-27 12:20:45 +11:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-12-25 21:22:08 +11:00
[[package]]
name = "supports-color"
2024-05-24 19:43:40 +10:00
version = "3.0.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "9829b314621dfc575df4e409e79f9d6a66a3bd707ab73f23cb4aa3a854ac854f"
2023-12-25 21:22:08 +11:00
dependencies = [
"is_ci",
]
[[package]]
name = "supports-hyperlinks"
2024-05-24 19:43:40 +10:00
version = "3.0.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "2c0a1e5168041f5f3ff68ff7d95dcb9c8749df29f6e7e89ada40dd4c9de404ee"
2023-12-25 21:22:08 +11:00
[[package]]
name = "supports-unicode"
2024-05-24 19:43:40 +10:00
version = "3.0.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
2023-12-25 21:22:08 +11:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-25 21:22:08 +11:00
"unicode-ident",
]
[[package]]
name = "syn"
2024-05-24 19:43:40 +10:00
version = "2.0.66"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2023-12-25 21:22:08 +11:00
"unicode-ident",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2023-12-25 21:22:08 +11:00
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "tempfile"
2024-05-24 19:43:40 +10:00
version = "3.10.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"fastrand",
"rustix",
2024-05-24 19:43:40 +10:00
"windows-sys 0.52.0",
2023-12-25 21:22:08 +11:00
]
2024-01-09 11:33:11 +11:00
[[package]]
name = "termcolor"
2024-01-11 08:57:41 +11:00
version = "1.4.1"
2024-01-09 11:33:11 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-11 08:57:41 +11:00
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2024-01-09 11:33:11 +11:00
dependencies = [
"winapi-util",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "terminal_size"
2024-05-24 19:43:40 +10:00
version = "0.3.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"rustix",
"windows-sys 0.48.0",
2023-12-25 21:22:08 +11:00
]
2023-12-25 18:05:47 +11:00
[[package]]
name = "tesla-charge-controller"
2024-07-09 10:32:51 +10:00
version = "1.5.0-pre"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-01-08 12:00:09 +11:00
"chrono",
2024-07-09 10:32:51 +10:00
"clap",
"env_logger",
2024-01-22 10:38:34 +11:00
"if_chain",
2023-12-28 12:41:05 +11:00
"include_dir",
2024-07-09 10:32:51 +10:00
"lazy_static",
"log",
2024-01-23 12:14:04 +11:00
"notify-debouncer-mini",
2024-01-09 11:11:16 +11:00
"prometheus",
2024-07-09 10:32:51 +10:00
"rand",
2024-05-25 16:15:53 +10:00
"reqwest",
2023-12-28 12:41:05 +11:00
"rocket",
2023-12-25 21:22:08 +11:00
"ron",
"serde",
2024-01-17 08:35:05 +11:00
"serde_json",
2024-01-10 15:22:28 +11:00
"serialport",
2024-02-12 13:55:30 +11:00
"tesla-common",
2023-12-25 21:22:08 +11:00
"teslatte",
"thiserror",
"tokio",
2024-07-09 10:32:51 +10:00
"tokio-modbus",
"tokio-serial",
2023-12-25 21:22:08 +11:00
]
2024-02-12 13:55:30 +11:00
[[package]]
name = "tesla-common"
version = "0.3.1"
2024-05-25 16:15:53 +10:00
source = "git+https://git.alexjanka.com/alex/tesla-common#74859ebe6f1c96ae6a62d9156beffd8df46dea37"
2024-02-12 13:55:30 +11:00
dependencies = [
"ron",
"serde",
"teslatte",
"thiserror",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "teslatte"
2024-05-24 19:43:40 +10:00
version = "0.1.15"
2024-05-25 09:34:53 +10:00
source = "git+https://git.alexjanka.com/alex/teslatte#490a50e24ca875e5eb26efc40c12229d5d2e1659"
2023-12-25 21:22:08 +11:00
dependencies = [
"chrono",
2024-07-09 10:32:51 +10:00
"clap",
2023-12-25 21:22:08 +11:00
"colored_json",
"derive_more",
"miette",
"pkce",
2024-07-09 10:32:51 +10:00
"rand",
2023-12-25 21:22:08 +11:00
"reqwest",
2024-05-24 19:43:40 +10:00
"rustls 0.23.8",
2023-12-25 21:22:08 +11:00
"serde",
"serde_json",
"strum",
"thiserror",
"tokio",
"tracing",
"tracing-subscriber",
"url",
"urlencoding",
]
[[package]]
name = "textwrap"
2024-05-24 19:43:40 +10:00
version = "0.16.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
2023-12-25 21:22:08 +11:00
dependencies = [
"smawk",
"unicode-linebreak",
"unicode-width",
]
[[package]]
name = "thiserror"
2024-05-24 19:43:40 +10:00
version = "1.0.61"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
2023-12-25 21:22:08 +11:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-05-24 19:43:40 +10:00
version = "1.0.61"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "thread_local"
2024-05-24 19:43:40 +10:00
version = "1.1.8"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"once_cell",
]
[[package]]
name = "time"
2024-05-24 19:43:40 +10:00
version = "0.3.36"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2023-12-25 21:22:08 +11:00
dependencies = [
"deranged",
"itoa",
2024-05-24 19:43:40 +10:00
"num-conv",
2023-12-25 21:22:08 +11:00
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
2024-05-24 19:43:40 +10:00
version = "0.2.18"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"num-conv",
2023-12-25 21:22:08 +11:00
"time-core",
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2024-05-24 19:43:40 +10:00
version = "1.37.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
2023-12-25 21:22:08 +11:00
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
"windows-sys 0.48.0",
]
[[package]]
name = "tokio-macros"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
2024-07-09 10:32:51 +10:00
[[package]]
name = "tokio-modbus"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fafa6b1efdb58d1dd98ec331448dc64c713bb3a6808baae9b35188af304e4f"
dependencies = [
"async-trait",
"byteorder",
"bytes",
"futures-core",
"futures-util",
"log",
"smallvec",
"thiserror",
"tokio",
"tokio-util",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
[[package]]
name = "tokio-rustls"
2024-05-24 19:43:40 +10:00
version = "0.25.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"rustls 0.22.4",
"rustls-pki-types",
2023-12-25 21:22:08 +11:00
"tokio",
]
2024-07-09 10:32:51 +10:00
[[package]]
name = "tokio-serial"
version = "5.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa6e2e4cf0520a99c5f87d5abb24172b5bd220de57c3181baaaa5440540c64aa"
dependencies = [
"cfg-if",
"futures",
"log",
"mio-serial",
"tokio",
]
2023-12-27 17:38:38 +11:00
[[package]]
name = "tokio-stream"
2024-05-24 19:43:40 +10:00
version = "0.1.15"
2023-12-27 17:38:38 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
2023-12-27 17:38:38 +11:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "tokio-util"
2024-05-24 19:43:40 +10:00
version = "0.7.11"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
2023-12-25 21:22:08 +11:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
2023-12-28 12:41:05 +11:00
[[package]]
name = "toml"
2024-05-24 19:43:40 +10:00
version = "0.8.13"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba"
2023-12-28 12:41:05 +11:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
2024-01-07 10:08:16 +11:00
"toml_edit",
2023-12-28 12:41:05 +11:00
]
2023-12-27 17:38:38 +11:00
[[package]]
name = "toml_datetime"
2024-05-24 19:43:40 +10:00
version = "0.6.6"
2023-12-27 17:38:38 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
2023-12-28 12:41:05 +11:00
dependencies = [
"serde",
]
2023-12-27 17:38:38 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "toml_edit"
2024-05-24 19:43:40 +10:00
version = "0.22.13"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c"
2023-12-28 12:41:05 +11:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2024-05-24 19:43:40 +10:00
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2023-12-25 21:22:08 +11:00
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "tracing-core"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [
2023-12-27 17:34:48 +11:00
"matchers",
2023-12-25 21:22:08 +11:00
"nu-ansi-term",
2023-12-27 17:34:48 +11:00
"once_cell",
2024-07-09 10:32:51 +10:00
"regex",
2023-12-25 21:22:08 +11:00
"sharded-slab",
"smallvec",
2024-07-09 10:32:51 +10:00
"thread_local",
2023-12-27 17:34:48 +11:00
"tracing",
2023-12-25 21:22:08 +11:00
"tracing-core",
"tracing-log",
]
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-12-28 12:41:05 +11:00
[[package]]
name = "ubyte"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f720def6ce1ee2fc44d40ac9ed6d3a59c361c80a75a7aa8e75bb9baed31cf2ea"
dependencies = [
"serde",
]
[[package]]
name = "uncased"
2024-05-24 19:43:40 +10:00
version = "0.9.10"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
2023-12-28 12:41:05 +11:00
dependencies = [
"serde",
"version_check",
]
2024-01-10 15:22:28 +11:00
[[package]]
name = "unescaper"
2024-05-24 19:43:40 +10:00
version = "0.1.4"
2024-01-10 15:22:28 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "0adf6ad32eb5b3cadff915f7b770faaac8f7ff0476633aa29eb0d9584d889d34"
2024-01-10 15:22:28 +11:00
dependencies = [
"thiserror",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "unicode-bidi"
2024-05-24 19:43:40 +10:00
version = "0.3.15"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2023-12-25 21:22:08 +11:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
[[package]]
name = "unicode-linebreak"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
[[package]]
name = "unicode-normalization"
2024-05-24 19:43:40 +10:00
version = "0.1.23"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2023-12-25 21:22:08 +11:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-width"
2024-05-24 19:43:40 +10:00
version = "0.1.12"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
2023-12-25 21:22:08 +11:00
2023-12-28 12:41:05 +11:00
[[package]]
name = "unicode-xid"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2023-12-25 21:22:08 +11:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
dependencies = [
"form_urlencoded",
"idna 0.5.0",
"percent-encoding",
]
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2024-01-23 12:14:04 +11:00
[[package]]
name = "walkdir"
2024-05-24 19:43:40 +10:00
version = "2.5.0"
2024-01-23 12:14:04 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2024-01-23 12:14:04 +11:00
dependencies = [
"same-file",
"winapi-util",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2024-05-24 19:43:40 +10:00
version = "0.2.92"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-05-24 19:43:40 +10:00
version = "0.2.92"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2023-12-25 21:22:08 +11:00
dependencies = [
"bumpalo",
2024-07-09 10:32:51 +10:00
"log",
2023-12-25 21:22:08 +11:00
"once_cell",
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-05-24 19:43:40 +10:00
version = "0.4.42"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-05-24 19:43:40 +10:00
version = "0.2.92"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"quote",
2023-12-25 21:22:08 +11:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-05-24 19:43:40 +10:00
version = "0.2.92"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2023-12-25 21:22:08 +11:00
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
2023-12-25 21:22:08 +11:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-05-24 19:43:40 +10:00
version = "0.2.92"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2023-12-25 21:22:08 +11:00
[[package]]
name = "web-sys"
2024-05-24 19:43:40 +10:00
version = "0.3.69"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
2023-12-25 21:22:08 +11:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
2024-05-24 19:43:40 +10:00
version = "0.26.1"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009"
dependencies = [
"rustls-pki-types",
]
2023-12-25 21:22:08 +11:00
2024-05-24 19:43:40 +10:00
[[package]]
name = "which"
version = "4.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
dependencies = [
"either",
"home",
"once_cell",
"rustix",
]
2023-12-25 21:22:08 +11:00
[[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-01-09 11:33:11 +11:00
[[package]]
name = "winapi-util"
2024-05-24 19:43:40 +10:00
version = "0.1.8"
2024-01-09 11:33:11 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
2024-01-09 11:33:11 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"windows-sys 0.52.0",
2024-01-09 11:33:11 +11:00
]
2023-12-25 21:22:08 +11: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"
2023-12-28 12:41:05 +11:00
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets 0.48.5",
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows-core"
2024-05-24 19:43:40 +10:00
version = "0.52.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"windows-targets 0.52.5",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-05-24 19:43:40 +10:00
"windows-targets 0.52.5",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-05-24 19:43:40 +10:00
"windows_aarch64_gnullvm 0.52.5",
"windows_aarch64_msvc 0.52.5",
"windows_i686_gnu 0.52.5",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.5",
"windows_x86_64_gnu 0.52.5",
"windows_x86_64_gnullvm 0.52.5",
"windows_x86_64_msvc 0.52.5",
2023-12-25 21:22:08 +11:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
2023-12-25 21:22:08 +11:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
2024-05-24 19:43:40 +10:00
version = "0.52.5"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
2023-12-25 21:22:08 +11:00
2023-12-27 17:38:38 +11:00
[[package]]
name = "winnow"
2024-05-24 19:43:40 +10:00
version = "0.6.8"
2023-12-27 17:38:38 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
2023-12-27 17:38:38 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"memchr",
2023-12-27 17:38:38 +11:00
]
2023-12-25 21:22:08 +11:00
[[package]]
name = "winreg"
2024-05-24 19:43:40 +10:00
version = "0.52.0"
2023-12-25 21:22:08 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
2023-12-25 21:22:08 +11:00
dependencies = [
2024-07-09 10:32:51 +10:00
"cfg-if",
2023-12-25 21:22:08 +11:00
"windows-sys 0.48.0",
]
[[package]]
name = "yansi"
2024-05-24 19:43:40 +10:00
version = "1.0.1"
2023-12-28 12:41:05 +11:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-24 19:43:40 +10:00
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2023-12-28 12:41:05 +11:00
dependencies = [
"is-terminal",
]
2023-12-27 12:20:45 +11:00
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
2024-05-24 19:43:40 +10:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
2024-07-09 10:32:51 +10:00
"quote",
2024-05-24 19:43:40 +10:00
"syn 2.0.66",
]