zabbixlaunch/Cargo.lock

1166 lines
29 KiB
Plaintext
Raw Normal View History

2021-09-05 20:30:24 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "alsa"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb213f6b3e4b1480a60931ca2035794aa67b73103d254715b1db7b70dcb3c934"
dependencies = [
"alsa-sys",
"bitflags",
"libc",
"nix 0.15.0",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "alsa-sys"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527"
dependencies = [
"libc",
"pkg-config",
]
2021-09-09 00:50:28 +02:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "autocfg"
version = "1.1.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-09-05 20:30:24 +02:00
[[package]]
name = "az"
version = "1.2.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f771a5d1f5503f7f4279a30f3643d3421ba149848b89ecaaec0ea2acf04a5ac4"
2021-09-05 20:30:24 +02:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
version = "1.3.2"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-09-05 20:30:24 +02:00
[[package]]
name = "bumpalo"
2022-06-04 15:33:56 +02:00
version = "3.10.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 15:33:56 +02:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2021-09-05 20:30:24 +02:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
[[package]]
name = "cc"
version = "1.0.73"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-09-05 20:30:24 +02:00
[[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"
2021-09-09 00:50:28 +02:00
[[package]]
name = "clap"
2022-05-16 14:29:27 +02:00
version = "3.1.18"
2021-09-09 00:50:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-16 14:29:27 +02:00
checksum = "d2dbdf4bdacb33466e854ce889eee8dfd5729abf7ccd7664d0a2d60cd384440b"
2021-09-09 00:50:28 +02:00
dependencies = [
"atty",
"bitflags",
2022-04-21 17:31:01 +02:00
"clap_lex",
"indexmap",
2021-09-09 00:50:28 +02:00
"strsim",
"termcolor",
2021-09-09 00:50:28 +02:00
"textwrap",
]
2022-04-21 17:31:01 +02:00
[[package]]
name = "clap_lex"
2022-05-04 19:04:29 +02:00
version = "0.2.0"
2022-04-21 17:31:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "a37c35f1112dad5e6e0b1adaff798507497a18fceeb30cceb3bae7d1427b9213"
2022-04-21 17:31:01 +02:00
dependencies = [
"os_str_bytes",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "core-foundation"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25bfd746d203017f7d5cbd31ee5d8e17f94b6521c7af77ece6c9e4b2d4b16c67"
dependencies = [
"core-foundation-sys",
2021-09-05 20:30:24 +02:00
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "065a5d7ffdcbc8fa145d6f0746f3555025b9097a9e9cda59f7467abae670c78d"
dependencies = [
"libc",
]
[[package]]
name = "coremidi"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99f92de5534f182bad5f91cad85611ab222cb6e237a0555e06c65a24936c3173"
dependencies = [
"core-foundation",
"core-foundation-sys",
2021-09-05 20:30:24 +02:00
"coremidi-sys",
"time",
]
[[package]]
name = "coremidi-sys"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07f05827cebb30dcd539ff1ac9bf6764f574a15fa147f8572f99d7617142f95e"
dependencies = [
"core-foundation-sys",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "embedded-graphics"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "750082c65094fbcc4baf9ba31583ce9a8bb7f52cadfb96f6164b1bc7f922f32b"
dependencies = [
"az",
"byteorder",
"embedded-graphics-core",
"float-cmp",
"micromath",
]
[[package]]
name = "embedded-graphics-core"
version = "0.3.3"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8b1239db5f3eeb7e33e35bd10bd014e7b2537b17e071f726a09351431337cfa"
2021-09-05 20:30:24 +02:00
dependencies = [
"az",
"byteorder",
]
[[package]]
name = "encoding_rs"
2022-04-11 10:19:14 +02:00
version = "0.8.31"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
2021-09-05 20:30:24 +02:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "float-cmp"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4"
dependencies = [
"num-traits",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "futures-channel"
version = "0.3.21"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2021-09-05 20:30:24 +02:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
version = "0.3.21"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-09-05 20:30:24 +02:00
[[package]]
name = "futures-io"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-09-05 20:30:24 +02:00
[[package]]
name = "futures-sink"
version = "0.3.21"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2021-09-05 20:30:24 +02:00
[[package]]
name = "futures-task"
version = "0.3.21"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2021-09-05 20:30:24 +02:00
[[package]]
name = "futures-util"
version = "0.3.21"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2021-09-05 20:30:24 +02:00
dependencies = [
"futures-core",
"futures-io",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "h2"
2022-04-11 10:19:14 +02:00
version = "0.3.13"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "http"
2022-04-29 17:35:33 +02:00
version = "0.2.7"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "ff8670570af52249509a86f5e3e18a08c60b177071826898fde8997cf5f6bfbb"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2022-05-22 19:20:01 +02:00
version = "0.4.5"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 19:20:01 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
2022-04-29 17:35:33 +02:00
version = "1.7.1"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c"
2021-09-05 20:30:24 +02:00
[[package]]
name = "httpdate"
version = "1.0.2"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-09-05 20:30:24 +02:00
[[package]]
name = "hyper"
2022-06-04 15:33:56 +02:00
version = "0.14.19"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 15:33:56 +02:00
checksum = "42dc3c131584288d375f2d07f822b0cb012d8c6fb899a5b9fdb3cb7eb9b6004f"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.23.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
2021-09-05 20:30:24 +02:00
dependencies = [
"http",
2021-09-05 20:30:24 +02:00
"hyper",
"rustls",
2021-09-05 20:30:24 +02:00
"tokio",
"tokio-rustls",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indexmap"
2022-06-04 15:33:56 +02:00
version = "1.8.2"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 15:33:56 +02:00
checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a"
2021-09-05 20:30:24 +02:00
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "ipnet"
2022-04-21 17:31:01 +02:00
version = "2.5.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-21 17:31:01 +02:00
checksum = "879d54834c8c76457ef4293a689b2a8c59b076067ad77b15efafbb05f92a592b"
2021-09-05 20:30:24 +02:00
[[package]]
name = "itoa"
2022-05-16 14:29:27 +02:00
version = "1.0.2"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-16 14:29:27 +02:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2021-09-05 20:30:24 +02:00
[[package]]
name = "js-sys"
2022-04-11 10:19:14 +02:00
version = "0.3.57"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "671a26f820db17c2a2750743f1dd03bafd15b98c9f30c7c2628c024c05d73397"
2021-09-05 20:30:24 +02:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "launchy"
version = "0.2.0"
source = "git+https://github.com/kangalioo/launchy?branch=master#a08eb179ceb4eb2d3e31471f57eb71a47c85f756"
2021-09-05 20:30:24 +02:00
dependencies = [
"midir",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-05-22 19:20:01 +02:00
version = "0.2.126"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 19:20:01 +02:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2021-09-05 20:30:24 +02:00
[[package]]
name = "log"
2022-05-04 19:04:29 +02:00
version = "0.4.17"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-09-05 20:30:24 +02:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "matches"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "memalloc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df39d232f5c40b0891c10216992c2f250c054105cb1e56f0fc9032db6203ecc1"
[[package]]
name = "memchr"
2022-05-04 19:04:29 +02:00
version = "2.5.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-09-05 20:30:24 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "micromath"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc4010833aea396656c2f91ee704d51a6f1329ec2ab56ffd00bfd56f7481ea94"
[[package]]
name = "midir"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25df1e7836ca65078a121efed77049084a434838562b9892d0401bdfb59244cc"
dependencies = [
"alsa",
"bitflags",
"coremidi",
"js-sys",
"libc",
"memalloc",
"nix 0.15.0",
2021-09-05 20:30:24 +02:00
"wasm-bindgen",
"web-sys",
"winapi",
]
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
[[package]]
name = "mio"
2022-05-08 19:49:27 +02:00
version = "0.8.3"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-08 19:49:27 +02:00
checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
2021-09-05 20:30:24 +02:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
2022-05-08 19:49:27 +02:00
"windows-sys",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "nix"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229"
dependencies = [
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
2022-05-10 12:50:58 +02:00
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-10 12:50:58 +02:00
checksum = "8f17df307904acd05aa8e32e97bb20f2a0df1728bbc2d771ae8f9a90463441e9"
dependencies = [
"bitflags",
"cfg-if 1.0.0",
"libc",
"memoffset",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "num-traits"
2022-05-04 19:04:29 +02:00
version = "0.2.15"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-09-05 20:30:24 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-09-05 20:30:24 +02:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
2022-05-27 14:39:44 +02:00
version = "1.12.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 14:39:44 +02:00
checksum = "7709cef83f0c1f58f666e746a08b21e0085f7440fa6a29cc194d68aac97a4225"
2021-09-05 20:30:24 +02:00
[[package]]
name = "os_str_bytes"
2022-05-27 14:39:44 +02:00
version = "6.1.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-27 14:39:44 +02:00
checksum = "21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa"
2021-09-05 20:30:24 +02:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project-lite"
2022-04-29 17:35:33 +02:00
version = "0.2.9"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-09-05 20:30:24 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2022-04-11 10:19:14 +02:00
version = "0.3.25"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-09-05 20:30:24 +02:00
[[package]]
name = "proc-macro2"
2022-05-22 19:20:01 +02:00
version = "1.0.39"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 19:20:01 +02:00
checksum = "c54b25569025b7fc9651de43004ae593a75ad88543b17178aa5e1b9c4f15f56f"
2021-09-05 20:30:24 +02:00
dependencies = [
2022-05-22 19:20:01 +02:00
"unicode-ident",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "quote"
2022-04-11 10:19:14 +02:00
version = "1.0.18"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
2021-09-05 20:30:24 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "reqwest"
version = "0.11.10"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
2021-09-05 20:30:24 +02:00
dependencies = [
"base64",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
2021-09-05 20:30:24 +02:00
"http",
"http-body",
"hyper",
"hyper-rustls",
2021-09-05 20:30:24 +02:00
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
"percent-encoding",
"pin-project-lite",
"rustls",
"rustls-pemfile",
2021-09-05 20:30:24 +02:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
2021-09-05 20:30:24 +02:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
2021-09-05 20:30:24 +02:00
"winreg",
]
[[package]]
name = "ring"
version = "0.16.20"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2021-09-05 20:30:24 +02:00
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
2021-09-05 20:30:24 +02:00
"winapi",
]
[[package]]
name = "rustls"
2022-05-22 19:20:01 +02:00
version = "0.20.6"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-22 19:20:01 +02:00
checksum = "5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033"
2021-09-05 20:30:24 +02:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "rustls-pemfile"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
dependencies = [
"base64",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "ryu"
2022-05-16 14:29:27 +02:00
version = "1.0.10"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-16 14:29:27 +02:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2021-09-05 20:30:24 +02:00
dependencies = [
"ring",
"untrusted",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "serde"
2022-05-04 19:04:29 +02:00
version = "1.0.137"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
2021-09-05 20:30:24 +02:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-05-04 19:04:29 +02:00
version = "1.0.137"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
2021-09-05 20:30:24 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-05-04 19:04:29 +02:00
version = "1.0.81"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "9b7ce2b32a1aed03c558dc61a5cd328f15aff2dbc17daad8fb8af04d2100e15c"
2021-09-05 20:30:24 +02:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-09-05 20:30:24 +02:00
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "slab"
2022-04-11 10:19:14 +02:00
version = "0.4.6"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2021-09-05 20:30:24 +02:00
[[package]]
name = "socket2"
2022-05-10 12:50:58 +02:00
version = "0.4.4"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-10 12:50:58 +02:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2021-09-05 20:30:24 +02:00
dependencies = [
"libc",
2022-05-10 12:50:58 +02:00
"winapi",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2021-09-09 00:50:28 +02:00
[[package]]
name = "strsim"
version = "0.10.0"
2021-09-09 00:50:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-09-09 00:50:28 +02:00
2021-09-05 20:30:24 +02:00
[[package]]
name = "syn"
2022-06-04 15:33:56 +02:00
version = "1.0.96"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 15:33:56 +02:00
checksum = "0748dd251e24453cb8717f0354206b91557e4ec8703673a4b30208f2abaf1ebf"
2021-09-05 20:30:24 +02:00
dependencies = [
"proc-macro2",
"quote",
2022-05-22 19:20:01 +02:00
"unicode-ident",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "termcolor"
version = "1.1.3"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2021-09-05 20:30:24 +02:00
dependencies = [
"winapi-util",
2021-09-05 20:30:24 +02:00
]
2021-09-09 00:50:28 +02:00
[[package]]
name = "textwrap"
version = "0.15.0"
2021-09-09 00:50:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2021-09-09 00:50:28 +02:00
2021-09-05 20:30:24 +02:00
[[package]]
name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
2021-09-05 20:30:24 +02:00
"winapi",
]
[[package]]
name = "tinyvec"
2022-04-29 17:35:33 +02:00
version = "1.6.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-09-05 20:30:24 +02:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
2022-06-04 15:33:56 +02:00
version = "1.19.0"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-04 15:33:56 +02:00
checksum = "0f392c8f16bda3456c0b00c6de39cb100449b98de55ac41c6cdd2bfcf53a1245"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
2022-04-29 17:35:33 +02:00
"once_cell",
2021-09-05 20:30:24 +02:00
"pin-project-lite",
"socket2",
2021-09-05 20:30:24 +02:00
"winapi",
]
[[package]]
name = "tokio-rustls"
2022-05-04 19:04:29 +02:00
version = "0.23.4"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-04 19:04:29 +02:00
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2021-09-05 20:30:24 +02:00
dependencies = [
"rustls",
2021-09-05 20:30:24 +02:00
"tokio",
"webpki",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "tokio-util"
2022-05-16 14:29:27 +02:00
version = "0.7.2"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-16 14:29:27 +02:00
checksum = "f988a1a1adc2fb21f9c12aa96441da33a1728193ae0b95d2be22dbd17fcb4e5c"
2021-09-05 20:30:24 +02:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-04-11 10:19:14 +02:00
"tracing",
2021-09-05 20:30:24 +02:00
]
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]]
name = "tracing"
2022-04-21 17:31:01 +02:00
version = "0.1.34"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-21 17:31:01 +02:00
checksum = "5d0ecdcb44a79f0fe9844f0c4f33a342cbcbb5117de8001e6ba0dc2351327d09"
2021-09-05 20:30:24 +02:00
dependencies = [
"cfg-if 1.0.0",
"pin-project-lite",
2022-04-11 10:19:14 +02:00
"tracing-attributes",
2021-09-05 20:30:24 +02:00
"tracing-core",
]
2022-04-11 10:19:14 +02:00
[[package]]
name = "tracing-attributes"
2022-04-29 17:35:33 +02:00
version = "0.1.21"
2022-04-11 10:19:14 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "cc6b8ad3567499f98a1db7a752b07a7c8c7c7c34c332ec00effb2b0027974b7c"
2022-04-11 10:19:14 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "tracing-core"
2022-04-21 17:31:01 +02:00
version = "0.1.26"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-21 17:31:01 +02:00
checksum = "f54c8ca710e81886d498c2fd3331b56c93aa248d49de2222ad2742247c60072f"
2021-09-05 20:30:24 +02:00
dependencies = [
"lazy_static",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "unicode-bidi"
2022-04-29 17:35:33 +02:00
version = "0.3.8"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 17:35:33 +02:00
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
2021-09-05 20:30:24 +02:00
2022-05-22 19:20:01 +02:00
[[package]]
name = "unicode-ident"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d22af068fba1eb5edcb4aea19d382b2a3deb4c8f9d475c589b6ada9e0fd493ee"
2021-09-05 20:30:24 +02:00
[[package]]
name = "unicode-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2021-09-05 20:30:24 +02:00
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-09-05 20:30:24 +02:00
[[package]]
name = "wasm-bindgen"
2022-04-11 10:19:14 +02:00
version = "0.2.80"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "27370197c907c55e3f1a9fbe26f44e937fe6451368324e009cba39e139dc08ad"
2021-09-05 20:30:24 +02:00
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-04-11 10:19:14 +02:00
version = "0.2.80"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "53e04185bfa3a779273da532f5025e33398409573f348985af9a1cbf3774d3f4"
2021-09-05 20:30:24 +02:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-04-11 10:19:14 +02:00
version = "0.4.30"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "6f741de44b75e14c35df886aff5f1eb73aa114fa5d4d00dcd37b5e01259bf3b2"
2021-09-05 20:30:24 +02:00
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-04-11 10:19:14 +02:00
version = "0.2.80"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "17cae7ff784d7e83a2fe7611cfe766ecf034111b49deb850a3dc7699c08251f5"
2021-09-05 20:30:24 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-04-11 10:19:14 +02:00
version = "0.2.80"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "99ec0dc7a4756fffc231aab1b9f2f578d23cd391390ab27f952ae0c9b3ece20b"
2021-09-05 20:30:24 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-04-11 10:19:14 +02:00
version = "0.2.80"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744"
2021-09-05 20:30:24 +02:00
[[package]]
name = "web-sys"
2022-04-11 10:19:14 +02:00
version = "0.3.57"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283"
2021-09-05 20:30:24 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2022-04-11 10:19:14 +02:00
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-11 10:19:14 +02:00
checksum = "44d8de8415c823c8abd270ad483c6feeac771fad964890779f9a8cb24fbbc1bf"
dependencies = [
"webpki",
]
2021-09-05 20:30:24 +02: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"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2021-09-05 20:30:24 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-05-08 19:49:27 +02:00
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2021-09-05 20:30:24 +02:00
[[package]]
name = "winreg"
version = "0.10.1"
2021-09-05 20:30:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-09-05 20:30:24 +02:00
dependencies = [
"winapi",
]
[[package]]
name = "zabbixlaunch"
2022-05-04 19:04:29 +02:00
version = "1.0.1"
2021-09-05 20:30:24 +02:00
dependencies = [
2021-09-09 00:50:28 +02:00
"clap",
2021-09-05 20:30:24 +02:00
"embedded-graphics",
"launchy",
2022-05-10 12:50:58 +02:00
"nix 0.24.1",
2021-09-05 20:30:24 +02:00
"reqwest",
"serde",
"serde_json",
]