2019-02-13 21:00:49 -06:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-02-26 20:07:06 +01:00
|
|
|
version = 3
|
|
|
|
|
2017-04-12 16:37:13 -04:00
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
2020-09-22 13:05:44 +02:00
|
|
|
version = "0.2.14"
|
2017-04-12 16:37:13 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-22 13:05:44 +02:00
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
2017-04-12 16:37:13 -04:00
|
|
|
dependencies = [
|
2023-05-23 22:54:11 -07:00
|
|
|
"hermit-abi 0.1.19",
|
2020-09-22 13:05:44 +02:00
|
|
|
"libc",
|
|
|
|
"winapi",
|
2017-04-12 16:37:13 -04:00
|
|
|
]
|
|
|
|
|
2020-10-03 19:40:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "1.1.0"
|
2020-10-03 19:40:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-10-03 19:40:39 +03:00
|
|
|
|
2019-01-04 19:42:46 +01:00
|
|
|
[[package]]
|
2019-12-20 23:05:01 +01:00
|
|
|
name = "bitflags"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "1.3.2"
|
2019-01-04 19:42:46 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2017-04-12 16:37:13 -04:00
|
|
|
|
2017-12-14 11:54:54 -06:00
|
|
|
[[package]]
|
|
|
|
name = "cbindgen"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.24.4"
|
2017-12-14 11:54:54 -06:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"clap",
|
|
|
|
"heck",
|
2020-10-03 19:40:39 +03:00
|
|
|
"indexmap",
|
2020-09-22 13:05:44 +02:00
|
|
|
"log",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2020-10-22 13:34:48 -07:00
|
|
|
"serial_test",
|
2023-05-23 22:54:11 -07:00
|
|
|
"syn 1.0.109",
|
2020-09-22 13:05:44 +02:00
|
|
|
"tempfile",
|
|
|
|
"toml",
|
2017-12-14 11:54:54 -06:00
|
|
|
]
|
|
|
|
|
2023-05-23 22:54:11 -07:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
|
|
|
version = "1.0.79"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
|
|
|
2018-03-12 13:20:52 -05:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "1.0.0"
|
2018-03-12 13:20:52 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
2018-03-12 13:20:52 -05:00
|
|
|
|
2017-04-12 16:37:13 -04:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "3.2.25"
|
2017-04-12 16:37:13 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
|
2017-04-12 16:37:13 -04:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"atty",
|
|
|
|
"bitflags",
|
2023-05-23 22:54:11 -07:00
|
|
|
"clap_lex",
|
2022-03-20 21:05:04 +08:00
|
|
|
"indexmap",
|
2020-09-22 13:05:44 +02:00
|
|
|
"strsim",
|
2022-03-20 21:05:04 +08:00
|
|
|
"termcolor",
|
2020-09-22 13:05:44 +02:00
|
|
|
"textwrap",
|
2017-04-12 16:37:13 -04:00
|
|
|
]
|
|
|
|
|
2023-05-23 22:54:11 -07:00
|
|
|
[[package]]
|
|
|
|
name = "clap_lex"
|
|
|
|
version = "0.2.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
|
|
|
dependencies = [
|
|
|
|
"os_str_bytes",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
|
|
dependencies = [
|
|
|
|
"errno-dragonfly",
|
|
|
|
"libc",
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "errno-dragonfly"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
2022-03-27 17:27:43 +02:00
|
|
|
name = "fastrand"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.9.0"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
2022-03-27 17:27:43 +02:00
|
|
|
"instant",
|
2018-04-04 20:48:03 +02:00
|
|
|
]
|
|
|
|
|
2020-10-03 19:40:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.12.3"
|
2020-10-03 19:40:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
2020-10-03 19:40:39 +03:00
|
|
|
|
2020-04-17 15:42:23 +02:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.4.1"
|
2020-04-17 15:42:23 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
2020-09-22 13:05:44 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "0.1.19"
|
2020-09-22 13:05:44 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
2020-04-17 15:42:23 +02:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"libc",
|
2020-04-17 15:42:23 +02:00
|
|
|
]
|
|
|
|
|
2023-05-23 22:54:11 -07:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
|
|
|
2020-10-03 19:40:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.9.3"
|
2020-10-03 19:40:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
2020-10-03 19:40:39 +03:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"hashbrown",
|
|
|
|
]
|
|
|
|
|
2022-03-27 17:27:43 +02:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
|
|
|
version = "0.1.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2023-05-23 22:54:11 -07:00
|
|
|
[[package]]
|
|
|
|
name = "io-lifetimes"
|
|
|
|
version = "1.0.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
|
|
|
|
dependencies = [
|
|
|
|
"hermit-abi 0.3.1",
|
|
|
|
"libc",
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
]
|
|
|
|
|
2017-05-23 23:42:44 -04:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.6"
|
2017-05-23 23:42:44 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
2017-05-23 23:42:44 -04:00
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
|
2017-04-12 16:37:13 -04:00
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.2.144"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
|
|
|
version = "0.3.8"
|
2017-04-12 16:37:13 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
2017-04-12 16:37:13 -04:00
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.4.9"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
2023-05-23 22:54:11 -07:00
|
|
|
"autocfg",
|
2020-10-22 13:34:48 -07:00
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
2018-03-12 13:20:52 -05:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.4.17"
|
2017-04-13 01:02:17 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
|
2018-03-12 13:20:52 -05:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"cfg-if",
|
2018-03-12 13:20:52 -05:00
|
|
|
]
|
2017-04-13 01:02:17 -04:00
|
|
|
|
2022-03-20 21:05:04 +08:00
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "6.5.0"
|
2022-03-20 21:05:04 +08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267"
|
2022-03-20 21:05:04 +08:00
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "0.11.2"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
2022-03-27 17:27:43 +02:00
|
|
|
"instant",
|
2020-10-22 13:34:48 -07:00
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.8.6"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
2022-03-27 17:27:43 +02:00
|
|
|
"instant",
|
2020-10-22 13:34:48 -07:00
|
|
|
"libc",
|
2023-05-23 22:54:11 -07:00
|
|
|
"redox_syscall 0.2.16",
|
2020-10-22 13:34:48 -07:00
|
|
|
"smallvec",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2018-09-10 11:18:30 -07:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.58"
|
2018-09-10 11:18:30 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8"
|
2018-09-10 11:18:30 -07:00
|
|
|
dependencies = [
|
2023-05-23 22:54:11 -07:00
|
|
|
"unicode-ident",
|
2018-09-10 11:18:30 -07:00
|
|
|
]
|
|
|
|
|
2018-01-25 12:31:47 -06:00
|
|
|
[[package]]
|
2019-01-04 19:42:46 +01:00
|
|
|
name = "quote"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.27"
|
2018-01-25 12:31:47 -06:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500"
|
2018-01-25 12:31:47 -06:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"proc-macro2",
|
2018-01-25 12:31:47 -06:00
|
|
|
]
|
|
|
|
|
2017-03-02 16:39:19 -05:00
|
|
|
[[package]]
|
2022-03-27 17:27:43 +02:00
|
|
|
name = "redox_syscall"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.2.16"
|
2019-01-04 19:42:46 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
2019-01-04 19:42:46 +01:00
|
|
|
dependencies = [
|
2022-03-27 17:27:43 +02:00
|
|
|
"bitflags",
|
2019-01-04 19:42:46 +01:00
|
|
|
]
|
2018-08-25 21:16:41 +01:00
|
|
|
|
2018-04-04 20:48:03 +02:00
|
|
|
[[package]]
|
2023-05-23 22:54:11 -07:00
|
|
|
name = "redox_syscall"
|
|
|
|
version = "0.3.5"
|
2017-04-18 03:04:36 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
2017-11-27 14:39:49 +01:00
|
|
|
dependencies = [
|
2023-05-23 22:54:11 -07:00
|
|
|
"bitflags",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
|
|
|
version = "0.37.19"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d"
|
|
|
|
dependencies = [
|
|
|
|
"bitflags",
|
|
|
|
"errno",
|
|
|
|
"io-lifetimes",
|
|
|
|
"libc",
|
|
|
|
"linux-raw-sys",
|
|
|
|
"windows-sys 0.48.0",
|
2017-11-27 14:39:49 +01:00
|
|
|
]
|
2017-04-18 03:04:36 -04:00
|
|
|
|
|
|
|
[[package]]
|
2019-01-04 19:42:46 +01:00
|
|
|
name = "ryu"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.13"
|
2019-01-04 19:42:46 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
2019-01-04 19:42:46 +01:00
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
|
|
|
2019-01-04 19:42:46 +01:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.163"
|
2017-05-23 23:42:44 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2"
|
2017-05-23 23:42:44 -04:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"serde_derive",
|
2018-04-25 14:24:31 -05:00
|
|
|
]
|
|
|
|
|
2018-02-21 14:17:14 -05:00
|
|
|
[[package]]
|
2019-01-04 19:42:46 +01:00
|
|
|
name = "serde_derive"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.163"
|
2018-02-21 14:17:14 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e"
|
2019-01-04 19:42:46 +01:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-05-23 22:54:11 -07:00
|
|
|
"syn 2.0.16",
|
2019-01-04 19:42:46 +01:00
|
|
|
]
|
2018-02-21 14:17:14 -05:00
|
|
|
|
|
|
|
[[package]]
|
2019-01-04 19:42:46 +01:00
|
|
|
name = "serde_json"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.96"
|
2018-02-21 14:17:14 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
|
2018-02-21 14:17:14 -05:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
2018-02-21 14:17:14 -05:00
|
|
|
]
|
|
|
|
|
2020-10-22 13:34:48 -07:00
|
|
|
[[package]]
|
|
|
|
name = "serial_test"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "0.5.1"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "e0bccbcf40c8938196944a3da0e133e031a33f4d6b72db3bda3cc556e361905d"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"parking_lot",
|
|
|
|
"serial_test_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serial_test_derive"
|
2022-03-27 17:27:43 +02:00
|
|
|
version = "0.5.1"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-27 17:27:43 +02:00
|
|
|
checksum = "b2acd6defeddb41eb60bb468f8825d0cfd0c2a76bc03bfd235b6a1dc4f6a1ad5"
|
2020-10-22 13:34:48 -07:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-05-23 22:54:11 -07:00
|
|
|
"syn 1.0.109",
|
2020-10-22 13:34:48 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.10.0"
|
2020-10-22 13:34:48 -07:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
2020-10-22 13:34:48 -07:00
|
|
|
|
2019-01-04 19:42:46 +01:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2022-03-20 21:05:04 +08:00
|
|
|
version = "0.10.0"
|
2019-01-04 19:42:46 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-20 21:05:04 +08:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2019-01-04 19:42:46 +01:00
|
|
|
|
2018-05-31 10:41:49 -05:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.0.109"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
|
|
|
version = "2.0.16"
|
2018-05-31 10:41:49 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01"
|
2018-05-31 10:41:49 -05:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-05-23 22:54:11 -07:00
|
|
|
"unicode-ident",
|
2018-05-31 10:41:49 -05:00
|
|
|
]
|
|
|
|
|
2018-04-04 20:48:03 +02:00
|
|
|
[[package]]
|
2018-08-25 21:16:41 +01:00
|
|
|
name = "tempfile"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "3.5.0"
|
2018-04-04 20:48:03 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
|
2018-04-04 20:48:03 +02:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"cfg-if",
|
2022-03-27 17:27:43 +02:00
|
|
|
"fastrand",
|
2023-05-23 22:54:11 -07:00
|
|
|
"redox_syscall 0.3.5",
|
|
|
|
"rustix",
|
|
|
|
"windows-sys 0.45.0",
|
2017-04-12 16:37:13 -04:00
|
|
|
]
|
|
|
|
|
2017-04-29 13:56:51 -04:00
|
|
|
[[package]]
|
2022-03-20 21:05:04 +08:00
|
|
|
name = "termcolor"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "1.2.0"
|
2017-04-29 13:56:51 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
|
2017-04-29 13:56:51 -04:00
|
|
|
dependencies = [
|
2022-03-20 21:05:04 +08:00
|
|
|
"winapi-util",
|
2017-04-29 13:56:51 -04:00
|
|
|
]
|
|
|
|
|
2022-03-20 21:05:04 +08:00
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.16.0"
|
2022-03-20 21:05:04 +08:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
|
2022-03-20 21:05:04 +08:00
|
|
|
|
2017-04-12 16:37:13 -04:00
|
|
|
[[package]]
|
2018-03-12 13:20:52 -05:00
|
|
|
name = "toml"
|
2023-05-23 22:54:11 -07:00
|
|
|
version = "0.5.11"
|
2017-04-12 16:37:13 -04:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
2018-03-12 13:20:52 -05:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"serde",
|
2018-03-12 13:20:52 -05:00
|
|
|
]
|
2017-04-12 16:37:13 -04:00
|
|
|
|
2018-01-25 12:31:47 -06:00
|
|
|
[[package]]
|
2023-05-23 22:54:11 -07:00
|
|
|
name = "unicode-ident"
|
|
|
|
version = "1.0.8"
|
2019-12-20 23:05:01 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-23 22:54:11 -07:00
|
|
|
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
|
2019-12-20 23:05:01 +01:00
|
|
|
|
2018-03-12 13:20:52 -05:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-09-22 13:05:44 +02:00
|
|
|
version = "0.3.9"
|
2018-03-12 13:20:52 -05:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-22 13:05:44 +02:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2018-03-12 13:20:52 -05:00
|
|
|
dependencies = [
|
2020-09-22 13:05:44 +02:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2018-03-12 13:20:52 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-22 13:05:44 +02:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2018-03-12 13:20:52 -05:00
|
|
|
|
2022-03-20 21:05:04 +08:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
|
|
|
dependencies = [
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2018-03-12 13:20:52 -05:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-09-22 13:05:44 +02:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2023-05-23 22:54:11 -07:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.45.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
|
|
dependencies = [
|
|
|
|
"windows-targets 0.42.2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[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.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm 0.42.2",
|
|
|
|
"windows_aarch64_msvc 0.42.2",
|
|
|
|
"windows_i686_gnu 0.42.2",
|
|
|
|
"windows_i686_msvc 0.42.2",
|
|
|
|
"windows_x86_64_gnu 0.42.2",
|
|
|
|
"windows_x86_64_gnullvm 0.42.2",
|
|
|
|
"windows_x86_64_msvc 0.42.2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm 0.48.0",
|
|
|
|
"windows_aarch64_msvc 0.48.0",
|
|
|
|
"windows_i686_gnu 0.48.0",
|
|
|
|
"windows_i686_msvc 0.48.0",
|
|
|
|
"windows_x86_64_gnu 0.48.0",
|
|
|
|
"windows_x86_64_gnullvm 0.48.0",
|
|
|
|
"windows_x86_64_msvc 0.48.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.42.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|