mppt-modbus/Cargo.lock

878 lines
22 KiB
Plaintext
Raw Permalink Normal View History

2022-09-02 19:07:04 +10:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2022-12-18 13:07:50 +11:00
version = "0.19.0"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
2022-09-02 19:07:04 +10:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aho-corasick"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5"
dependencies = [
"memchr 2.5.0",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2022-12-18 11:32:42 +11:00
"hermit-abi 0.1.19",
2022-09-02 19:07:04 +10:00
"libc",
"winapi 0.3.9",
]
[[package]]
name = "backtrace"
2022-12-18 13:07:50 +11:00
version = "0.3.67"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
2022-09-02 19:07:04 +10:00
dependencies = [
"addr2line",
"cc",
"cfg-if 1.0.0",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2022-09-04 14:42:55 +10:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "bindgen"
version = "0.31.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57253399c086f4f29e57ffd3b5cdbc23a806a00292619351aa4cfa39cb49d4ea"
dependencies = [
"cexpr",
"cfg-if 0.1.10",
"clang-sys",
2022-09-03 12:45:33 +10:00
"clap 2.34.0",
2022-09-02 19:07:04 +10:00
"env_logger",
"lazy_static 0.2.11",
"log 0.3.9",
"peeking_take_while",
"quote 0.3.15",
"regex",
"which",
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "cc"
2022-12-18 13:07:50 +11:00
version = "1.0.78"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
2022-09-02 19:07:04 +10:00
[[package]]
name = "cexpr"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42aac45e9567d97474a834efdee3081b3c942b2205be932092f53354ce503d6c"
dependencies = [
"nom",
]
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clang-sys"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e414af9726e1d11660801e73ccc7fb81803fb5f49e5903a25b348b2b3b480d2e"
dependencies = [
"glob",
"libc",
"libloading",
]
[[package]]
name = "clap"
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"ansi_term",
"atty",
"bitflags",
2022-09-03 12:45:33 +10:00
"strsim 0.8.0",
2022-12-18 11:32:42 +11:00
"textwrap",
2022-09-02 19:07:04 +10:00
"unicode-width",
"vec_map",
]
2022-09-03 12:45:33 +10:00
[[package]]
name = "clap"
2022-12-18 11:32:42 +11:00
version = "4.0.29"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 11:32:42 +11:00
checksum = "4d63b9e9c07271b9957ad22c173bae2a4d9a81127680962039296abcd2f8251d"
2022-09-03 12:45:33 +10:00
dependencies = [
"bitflags",
"clap_derive",
"clap_lex",
2022-12-18 11:32:42 +11:00
"is-terminal",
2022-09-03 12:45:33 +10:00
"once_cell",
"strsim 0.10.0",
"termcolor",
]
[[package]]
name = "clap_derive"
2022-12-18 11:32:42 +11:00
version = "4.0.21"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 11:32:42 +11:00
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
2022-09-03 12:45:33 +10:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-03 12:45:33 +10:00
"syn",
]
[[package]]
name = "clap_lex"
2022-12-18 11:32:42 +11:00
version = "0.3.0"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 11:32:42 +11:00
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
2022-09-03 12:45:33 +10:00
dependencies = [
"os_str_bytes",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "env_logger"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ddf21e73e016298f5cb37d6ef8e8da8e39f91f9ec8b0df44b7deb16a9f8cd5b"
dependencies = [
"log 0.3.9",
"regex",
]
2022-12-18 11:32:42 +11:00
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi 0.3.9",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "failure"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
dependencies = [
"backtrace",
"failure_derive",
]
[[package]]
name = "failure_derive"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
dependencies = [
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-02 19:07:04 +10:00
"syn",
"synstructure",
]
[[package]]
name = "fuchsia-cprng"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
[[package]]
name = "gimli"
2022-12-18 13:07:50 +11:00
version = "0.27.0"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793"
2022-09-02 19:07:04 +10:00
[[package]]
name = "glob"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb"
2022-09-03 12:45:33 +10:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2022-09-02 19:07:04 +10:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2022-09-03 12:45:33 +10:00
[[package]]
2022-12-18 11:32:42 +11:00
name = "hermit-abi"
version = "0.2.6"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 11:32:42 +11:00
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
2022-09-03 12:45:33 +10:00
dependencies = [
2022-12-18 11:32:42 +11:00
"libc",
]
[[package]]
name = "io-lifetimes"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
dependencies = [
"libc",
"windows-sys",
]
[[package]]
name = "is-terminal"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330"
dependencies = [
"hermit-abi 0.2.6",
"io-lifetimes",
"rustix",
"windows-sys",
2022-09-03 12:45:33 +10:00
]
2022-12-18 13:19:48 +11:00
[[package]]
name = "itoa"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
2022-09-02 19:07:04 +10:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "lazy_static"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-12-18 11:32:42 +11:00
version = "0.2.138"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 11:32:42 +11:00
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
2022-09-02 19:07:04 +10:00
[[package]]
name = "libloading"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd38073de8f7965d0c17d30546d4bb6da311ab428d1c7a3fc71dff7f9d4979b9"
dependencies = [
"kernel32-sys",
"lazy_static 1.4.0",
"winapi 0.2.8",
]
[[package]]
name = "libmodbus-rs"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c93c05970ef216c712383dd33b8dd0c73084a45b640f6931d8d6f0f963f80fdf"
dependencies = [
2022-09-03 12:45:33 +10:00
"clap 2.34.0",
2022-09-02 19:07:04 +10:00
"failure",
"libc",
"libmodbus-sys",
"rand",
"time",
]
[[package]]
name = "libmodbus-sys"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d60fb76049179a9bc9625944305ad8e31cb5d703038cb95118b002512caf58a9"
dependencies = [
"bindgen",
"cc",
"libc",
"pkg-config",
]
2022-12-18 11:32:42 +11:00
[[package]]
name = "linux-raw-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2022-09-02 19:07:04 +10:00
[[package]]
name = "log"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
dependencies = [
"log 0.4.17",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "memchr"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a"
dependencies = [
"libc",
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "miniz_oxide"
2022-12-18 13:07:50 +11:00
version = "0.6.2"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2022-09-02 19:07:04 +10:00
dependencies = [
"adler",
]
2022-12-18 15:59:20 +11:00
[[package]]
name = "mppt-common"
version = "0.1.0"
dependencies = [
"serde",
2022-12-18 16:10:14 +11:00
"serde_json",
2022-12-18 15:59:20 +11:00
]
2022-09-02 19:07:04 +10:00
[[package]]
2022-09-05 09:30:24 +10:00
name = "mppt-control"
2022-12-21 20:39:27 +11:00
version = "1.2.0"
2022-09-02 19:07:04 +10:00
dependencies = [
2022-09-04 14:42:55 +10:00
"bincode",
2022-12-18 11:32:42 +11:00
"clap 4.0.29",
2022-09-02 19:07:04 +10:00
"libmodbus-rs",
2022-12-18 15:59:20 +11:00
"mppt-common",
2022-09-04 14:42:55 +10:00
"serde",
2022-09-02 19:07:04 +10:00
]
[[package]]
name = "nom"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05aec50c70fd288702bcd93284a8444607f3292dbdf2a30de5ea5dcdbe72287b"
dependencies = [
"memchr 1.0.2",
]
[[package]]
name = "object"
2022-12-18 13:07:50 +11:00
version = "0.30.0"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "239da7f290cfa979f43f85a8efeee9a8a76d0827c356d37f9d3d7254d6b537fb"
2022-09-02 19:07:04 +10:00
dependencies = [
"memchr 2.5.0",
]
2022-09-03 12:45:33 +10:00
[[package]]
name = "once_cell"
2022-12-18 13:07:50 +11:00
version = "1.16.0"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2022-11-14 14:39:18 +11:00
2022-09-03 12:45:33 +10:00
[[package]]
name = "os_str_bytes"
2022-12-18 13:07:50 +11:00
version = "6.4.1"
2022-09-03 12:45:33 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
2022-09-03 12:45:33 +10:00
2022-09-02 19:07:04 +10:00
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "pkg-config"
2022-12-18 13:07:50 +11:00
version = "0.3.26"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-09-02 19:07:04 +10:00
2022-09-03 12:45:33 +10:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-03 12:45:33 +10:00
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-03 12:45:33 +10:00
"version_check",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "proc-macro2"
2022-12-18 13:07:50 +11:00
version = "1.0.48"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "e9d89e5dba24725ae5678020bf8f1357a9aa7ff10736b551adbcd3f8d17d766f"
2022-09-02 19:07:04 +10:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a"
[[package]]
name = "quote"
2022-12-18 13:07:50 +11:00
version = "1.0.22"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "556d0f47a940e895261e77dc200d5eadfc6ef644c179c6f5edfc105e3a2292c8"
2022-09-02 19:07:04 +10:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
dependencies = [
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi 0.3.9",
]
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "regex"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
dependencies = [
"aho-corasick",
"memchr 2.5.0",
"regex-syntax",
"thread_local",
"utf8-ranges",
]
[[package]]
name = "regex-syntax"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"
dependencies = [
"ucd-util",
]
[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2022-12-18 11:32:42 +11:00
[[package]]
name = "rustix"
version = "0.36.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
"windows-sys",
]
2022-12-18 13:19:48 +11:00
[[package]]
name = "ryu"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
2022-09-04 14:42:55 +10:00
[[package]]
name = "serde"
2022-12-18 13:07:50 +11:00
version = "1.0.151"
2022-09-04 14:42:55 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "97fed41fc1a24994d044e6db6935e69511a1153b52c15eb42493b26fa87feba0"
2022-09-04 14:42:55 +10:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-12-18 13:07:50 +11:00
version = "1.0.151"
2022-09-04 14:42:55 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "255abe9a125a985c05190d687b320c12f9b1f0b99445e608c21ba0782c719ad8"
2022-09-04 14:42:55 +10:00
dependencies = [
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-04 14:42:55 +10:00
"syn",
]
2022-12-18 13:19:48 +11:00
[[package]]
name = "serde_json"
version = "1.0.90"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8778cc0b528968fe72abec38b5db5a20a70d148116cd9325d2bc5f5180ca3faf"
dependencies = [
"itoa",
"ryu",
"serde",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2022-09-03 12:45:33 +10:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-09-02 19:07:04 +10:00
[[package]]
name = "syn"
2022-12-18 13:07:50 +11:00
version = "1.0.106"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "09ee3a69cd2c7e06684677e5629b3878b253af05e4714964204279c6bc02cf0b"
2022-09-02 19:07:04 +10:00
dependencies = [
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-02 19:07:04 +10:00
"unicode-ident",
]
[[package]]
name = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
2022-12-18 13:07:50 +11:00
"quote 1.0.22",
2022-09-02 19:07:04 +10:00
"syn",
"unicode-xid",
]
2022-09-03 12:45:33 +10:00
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
2022-09-02 19:07:04 +10:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thread_local"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
dependencies = [
"lazy_static 1.4.0",
]
[[package]]
name = "time"
2022-12-18 13:07:50 +11:00
version = "0.1.45"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2022-09-02 19:07:04 +10:00
dependencies = [
"libc",
"wasi",
"winapi 0.3.9",
]
[[package]]
name = "ucd-util"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65bfcbf611b122f2c10eb1bb6172fbc4c2e25df9970330e4d75ce2b5201c9bfc"
[[package]]
name = "unicode-ident"
2022-12-18 13:07:50 +11:00
version = "1.0.6"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
2022-09-02 19:07:04 +10:00
[[package]]
name = "unicode-width"
2022-12-18 13:07:50 +11:00
version = "0.1.10"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2022-09-02 19:07:04 +10:00
[[package]]
name = "unicode-xid"
2022-12-18 13:07:50 +11:00
version = "0.2.4"
2022-09-02 19:07:04 +10:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-18 13:07:50 +11:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2022-09-02 19:07:04 +10:00
[[package]]
name = "utf8-ranges"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2022-09-03 12:45:33 +10:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-09-02 19:07:04 +10:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "which"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e84a603e7e0b1ce1aa1ee2b109c7be00155ce52df5081590d1ffb93f4f515cb2"
dependencies = [
"libc",
]
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
[[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-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2022-09-03 12:45:33 +10:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi 0.3.9",
]
2022-09-02 19:07:04 +10: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"
2022-12-18 11:32:42 +11:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
[[package]]
name = "windows_i686_gnu"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
[[package]]
name = "windows_i686_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"