2019-11-29 19:39:40 +00:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-11-09 21:18:19 +00:00
|
|
|
version = 3
|
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "anstream"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
|
|
|
|
dependencies = [
|
|
|
|
"anstyle",
|
|
|
|
"anstyle-parse",
|
|
|
|
"anstyle-query",
|
|
|
|
"anstyle-wincon",
|
|
|
|
"colorchoice",
|
|
|
|
"is-terminal",
|
|
|
|
"utf8parse",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "anstyle"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "anstyle-parse"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
|
|
|
|
dependencies = [
|
|
|
|
"utf8parse",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "anstyle-query"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
|
|
|
|
dependencies = [
|
|
|
|
"windows-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "anstyle-wincon"
|
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c677ab05e09154296dd37acecd46420c17b9713e8366facafa8fc0885167cf4c"
|
|
|
|
dependencies = [
|
|
|
|
"anstyle",
|
|
|
|
"windows-sys",
|
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.72"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-channel"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.9.0"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
|
|
|
"concurrent-queue",
|
|
|
|
"event-listener",
|
|
|
|
"futures-core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-executor"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.5.1"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
2022-12-20 11:06:43 +00:00
|
|
|
"async-lock",
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-task",
|
|
|
|
"concurrent-queue",
|
2023-08-14 08:42:43 +00:00
|
|
|
"fastrand 1.9.0",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-lite",
|
2021-11-10 14:16:43 +00:00
|
|
|
"slab",
|
2020-11-23 14:29:31 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-global-executor"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "2.3.1"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"async-channel",
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-executor",
|
|
|
|
"async-io",
|
2022-10-24 10:18:42 +00:00
|
|
|
"async-lock",
|
2021-11-10 14:16:43 +00:00
|
|
|
"blocking",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-lite",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-io"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.13.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2022-12-20 11:06:43 +00:00
|
|
|
"async-lock",
|
2022-10-24 10:18:42 +00:00
|
|
|
"autocfg",
|
2023-08-14 08:42:43 +00:00
|
|
|
"cfg-if",
|
2020-11-23 14:29:31 +00:00
|
|
|
"concurrent-queue",
|
|
|
|
"futures-lite",
|
|
|
|
"log",
|
|
|
|
"parking",
|
|
|
|
"polling",
|
2023-08-14 08:42:43 +00:00
|
|
|
"rustix 0.37.23",
|
2021-11-10 14:16:43 +00:00
|
|
|
"slab",
|
|
|
|
"socket2",
|
2020-11-23 14:29:31 +00:00
|
|
|
"waker-fn",
|
|
|
|
]
|
|
|
|
|
2021-11-10 14:16:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-lock"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.8.0"
|
2021-11-10 14:16:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
|
2021-11-10 14:16:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"event-listener",
|
|
|
|
]
|
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-native-tls"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.5.0"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "9343dc5acf07e79ff82d0c37899f079db3534d99f189a1837c8e549c99405bec"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2022-03-24 10:05:29 +00:00
|
|
|
"futures-util",
|
2020-11-23 14:29:31 +00:00
|
|
|
"native-tls",
|
|
|
|
"thiserror",
|
|
|
|
"url",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "async-std"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "1.12.0"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"async-channel",
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-global-executor",
|
|
|
|
"async-io",
|
2021-11-10 14:16:43 +00:00
|
|
|
"async-lock",
|
2020-11-23 14:29:31 +00:00
|
|
|
"crossbeam-utils",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"futures-lite",
|
|
|
|
"gloo-timers",
|
|
|
|
"kv-log-macro",
|
|
|
|
"log",
|
|
|
|
"memchr",
|
|
|
|
"once_cell",
|
|
|
|
"pin-project-lite",
|
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
|
|
|
"wasm-bindgen-futures",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-task"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "4.4.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "async-tungstenite"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.23.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a1e9efbe14612da0a19fb983059a0b621e9cf6225d7018ecab4f9988215540dc"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-native-tls",
|
|
|
|
"async-std",
|
|
|
|
"futures-io",
|
|
|
|
"futures-util",
|
|
|
|
"log",
|
2021-11-10 14:16:43 +00:00
|
|
|
"pin-project-lite",
|
2020-11-23 14:29:31 +00:00
|
|
|
"tungstenite",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "atomic-waker"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.1.1"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
2020-01-23 06:35:25 +00:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-03-24 10:05:29 +00:00
|
|
|
version = "1.1.0"
|
2020-01-23 06:35:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-24 10:05:29 +00:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-01-23 06:35:25 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2023-08-14 08:42:43 +00:00
|
|
|
name = "bitflags"
|
|
|
|
version = "1.3.2"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.4.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block"
|
|
|
|
version = "0.1.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.10.4"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"generic-array",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "blocking"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.3.1"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-channel",
|
2022-12-20 11:06:43 +00:00
|
|
|
"async-lock",
|
2020-11-23 14:29:31 +00:00
|
|
|
"async-task",
|
|
|
|
"atomic-waker",
|
2023-08-14 08:42:43 +00:00
|
|
|
"fastrand 1.9.0",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-lite",
|
2023-08-14 08:42:43 +00:00
|
|
|
"log",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bumpalo"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "3.13.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2021-11-10 14:16:43 +00:00
|
|
|
version = "1.4.3"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-10 14:16:43 +00:00
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2023-02-10 11:07:49 +00:00
|
|
|
version = "1.4.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-10 11:07:49 +00:00
|
|
|
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.82"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "305fe645edc1442a0fa8b6726ba61d422798d37a52e12eaecf4b022ebbb88f01"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2021-11-09 21:18:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-expr"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.15.4"
|
2021-11-09 21:18:19 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9"
|
2021-11-09 21:18:19 +00:00
|
|
|
dependencies = [
|
|
|
|
"smallvec",
|
2023-08-14 08:42:43 +00:00
|
|
|
"target-lexicon",
|
2021-11-09 21:18:19 +00:00
|
|
|
]
|
|
|
|
|
2020-11-23 14:29:31 +00:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "4.3.21"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "c27cdf28c0f604ba3f512b0c9a409f8de8513e4816705deb0498b627e7c3a3fd"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"clap_builder",
|
2022-10-24 10:18:42 +00:00
|
|
|
"clap_derive",
|
|
|
|
"once_cell",
|
2023-08-14 08:42:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_builder"
|
|
|
|
version = "4.3.21"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "08a9f1ab5e9f01a9b81f202e8562eb9a10de70abf9eaeac1be465c28b75aa4aa"
|
|
|
|
dependencies = [
|
|
|
|
"anstream",
|
|
|
|
"anstyle",
|
|
|
|
"clap_lex",
|
2022-10-24 10:18:42 +00:00
|
|
|
"strsim",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_derive"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "4.3.12"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"heck",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2022-10-24 10:18:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_lex"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.5.0"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
|
2022-10-24 10:18:42 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cocoa"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.25.0"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2022-10-24 10:18:42 +00:00
|
|
|
"block",
|
|
|
|
"cocoa-foundation",
|
|
|
|
"core-foundation",
|
|
|
|
"core-graphics",
|
2023-08-14 08:42:43 +00:00
|
|
|
"foreign-types 0.5.0",
|
2022-10-24 10:18:42 +00:00
|
|
|
"libc",
|
|
|
|
"objc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cocoa-foundation"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.1.1"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "931d3837c286f56e3c58423ce4eba12d08db2374461a785c86f672b08b5650d6"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2022-10-24 10:18:42 +00:00
|
|
|
"block",
|
|
|
|
"core-foundation",
|
|
|
|
"core-graphics-types",
|
2023-08-14 08:42:43 +00:00
|
|
|
"foreign-types 0.3.2",
|
2022-10-24 10:18:42 +00:00
|
|
|
"libc",
|
|
|
|
"objc",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "colorchoice"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
2020-07-31 08:51:43 +00:00
|
|
|
name = "concurrent-queue"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.2.0"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2022-12-20 11:06:43 +00:00
|
|
|
"crossbeam-utils",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2020-07-31 08:51:43 +00:00
|
|
|
name = "core-foundation"
|
2022-03-24 10:05:29 +00:00
|
|
|
version = "0.9.3"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-24 10:05:29 +00:00
|
|
|
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2020-07-31 08:51:43 +00:00
|
|
|
name = "core-foundation-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.8.4"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
|
2020-11-23 14:29:31 +00:00
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "core-graphics"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.23.1"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2022-10-24 10:18:42 +00:00
|
|
|
"core-foundation",
|
|
|
|
"core-graphics-types",
|
2023-08-14 08:42:43 +00:00
|
|
|
"foreign-types 0.5.0",
|
2022-10-24 10:18:42 +00:00
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-graphics-types"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.1.2"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2022-10-24 10:18:42 +00:00
|
|
|
"core-foundation",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-11-23 14:29:31 +00:00
|
|
|
[[package]]
|
2021-11-10 14:16:43 +00:00
|
|
|
name = "cpufeatures"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.9"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
|
2021-11-10 14:16:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.8.16"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2022-03-24 10:05:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "crypto-common"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.1.6"
|
2022-03-24 10:05:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
2022-03-24 10:05:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
"typenum",
|
|
|
|
]
|
|
|
|
|
2021-11-10 14:16:43 +00:00
|
|
|
[[package]]
|
2023-08-14 08:42:43 +00:00
|
|
|
name = "data-encoding"
|
|
|
|
version = "2.4.0"
|
2021-11-10 14:16:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
|
2021-11-10 14:16:43 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.10.7"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2022-03-24 10:05:29 +00:00
|
|
|
"block-buffer",
|
|
|
|
"crypto-common",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "either"
|
|
|
|
version = "1.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "equivalent"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.2"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
|
2022-12-20 11:06:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"errno-dragonfly",
|
|
|
|
"libc",
|
2023-08-14 08:42:43 +00:00
|
|
|
"windows-sys",
|
2022-12-20 11:06:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "errno-dragonfly"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "event-listener"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "2.5.3"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.9.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
2020-07-31 08:51:43 +00:00
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
2020-05-22 19:45:35 +00:00
|
|
|
version = "1.0.7"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"foreign-types-shared 0.1.1",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
|
|
dependencies = [
|
|
|
|
"foreign-types-macros",
|
|
|
|
"foreign-types-shared 0.3.1",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types-macros"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 2.0.28",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
|
|
|
2020-11-23 14:29:31 +00:00
|
|
|
[[package]]
|
|
|
|
name = "form_urlencoded"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.2.0"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
|
|
|
"percent-encoding",
|
|
|
|
]
|
2020-01-05 09:39:33 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "futures"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-channel"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-core"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-executor"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-io"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "futures-lite"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.13.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"fastrand 1.9.0",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"memchr",
|
|
|
|
"parking",
|
|
|
|
"pin-project-lite",
|
|
|
|
"waker-fn",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "futures-macro"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-sink"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-task"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-util"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.28"
|
2020-05-22 19:45:35 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
|
2020-05-22 19:45:35 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"memchr",
|
2021-11-10 14:16:43 +00:00
|
|
|
"pin-project-lite",
|
2020-11-23 14:29:31 +00:00
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.14.7"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"typenum",
|
|
|
|
"version_check",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "getrandom"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.10"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"wasi",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "gio-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.18.1"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"glib-sys",
|
|
|
|
"gobject-sys",
|
|
|
|
"libc",
|
|
|
|
"system-deps",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "glib"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.18.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "331156127e8166dd815cf8d2db3a5beb492610c716c03ee6db4f2d07092af0a7"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 2.4.0",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-task",
|
2022-10-24 10:18:42 +00:00
|
|
|
"futures-util",
|
|
|
|
"gio-sys",
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib-macros",
|
|
|
|
"glib-sys",
|
|
|
|
"gobject-sys",
|
|
|
|
"libc",
|
2023-02-10 11:07:49 +00:00
|
|
|
"memchr",
|
2020-11-23 14:29:31 +00:00
|
|
|
"once_cell",
|
2021-11-09 21:18:19 +00:00
|
|
|
"smallvec",
|
2022-03-24 10:05:29 +00:00
|
|
|
"thiserror",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "glib-macros"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.18.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "179643c50bf28d20d2f6eacd2531a88f2f5d9747dd0b86b8af1e8bb5dd0de3c0"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2022-10-24 10:18:42 +00:00
|
|
|
"heck",
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro-crate",
|
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "glib-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.18.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"system-deps",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gloo-timers"
|
2023-02-10 11:07:49 +00:00
|
|
|
version = "0.2.6"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-10 11:07:49 +00:00
|
|
|
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gobject-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.18.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib-sys",
|
|
|
|
"libc",
|
|
|
|
"system-deps",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "f8cdb86791dc39a5443f7d08cf3e7ae9c88a94991aba620d177cb5804838201f"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
|
|
|
"glib",
|
|
|
|
"gstreamer-sys",
|
2023-08-14 08:42:43 +00:00
|
|
|
"itertools",
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"muldiv",
|
2021-11-09 21:18:19 +00:00
|
|
|
"num-integer",
|
2020-11-23 14:29:31 +00:00
|
|
|
"num-rational",
|
2022-03-24 10:05:29 +00:00
|
|
|
"option-operations",
|
2020-11-23 14:29:31 +00:00
|
|
|
"paste",
|
|
|
|
"pretty-hex",
|
2023-02-10 11:07:49 +00:00
|
|
|
"smallvec",
|
2020-11-23 14:29:31 +00:00
|
|
|
"thiserror",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer-sdp"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "44947e1d02e706baadfc0a8d25fed276948df86eb98fce434c8bc2172e83c3fa"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib",
|
|
|
|
"gstreamer",
|
|
|
|
"gstreamer-sdp-sys",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer-sdp-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "006e4bdf4618c70a2cb440ca4adf1a4140fc118b1b314684903a48f0ef5e1da1"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib-sys",
|
|
|
|
"gstreamer-sys",
|
|
|
|
"libc",
|
|
|
|
"system-deps",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a70e3a99118bcd1221f8a62d7a905bae5e5cc2cda678bb46bf3cd36e0f899d33"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib-sys",
|
|
|
|
"gobject-sys",
|
|
|
|
"libc",
|
|
|
|
"system-deps",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer-webrtc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "fab74a123e998f79bba3e823844be7e813d0eaad4169718bfe1f6613992fd905"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib",
|
|
|
|
"gstreamer",
|
|
|
|
"gstreamer-sdp",
|
|
|
|
"gstreamer-webrtc-sys",
|
|
|
|
"libc",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "gstreamer-webrtc-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.21.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "e32df9bf9d801e6f874de2476fd3dcf2a1ca9247e8979bd4de034a45fd399663"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"glib-sys",
|
|
|
|
"gstreamer-sdp-sys",
|
2022-10-24 10:18:42 +00:00
|
|
|
"gstreamer-sys",
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"system-deps",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2023-02-10 11:07:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.14.0"
|
2023-02-10 11:07:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
2023-02-10 11:07:49 +00:00
|
|
|
|
2022-03-24 10:05:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
2023-02-10 11:07:49 +00:00
|
|
|
version = "0.4.1"
|
2022-03-24 10:05:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-10 11:07:49 +00:00
|
|
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
2022-03-24 10:05:29 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.2"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "http"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.9"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"bytes",
|
|
|
|
"fnv",
|
|
|
|
"itoa",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "httparse"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "1.8.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2023-02-10 11:07:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.0.0"
|
2023-02-10 11:07:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
|
2023-02-10 11:07:49 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"equivalent",
|
2023-02-10 11:07:49 +00:00
|
|
|
"hashbrown",
|
|
|
|
]
|
|
|
|
|
2020-11-23 14:29:31 +00:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
2021-11-10 14:16:43 +00:00
|
|
|
version = "0.1.12"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-10 14:16:43 +00:00
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "io-lifetimes"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.11"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
2022-12-20 11:06:43 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"hermit-abi",
|
2022-12-20 11:06:43 +00:00
|
|
|
"libc",
|
2023-08-14 08:42:43 +00:00
|
|
|
"windows-sys",
|
2022-12-20 11:06:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "is-terminal"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.9"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
|
2022-12-20 11:06:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
2023-08-14 08:42:43 +00:00
|
|
|
"rustix 0.38.8",
|
|
|
|
"windows-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
|
|
dependencies = [
|
|
|
|
"either",
|
2022-12-20 11:06:43 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.9"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
2020-07-31 08:51:43 +00:00
|
|
|
name = "js-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.64"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"wasm-bindgen",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "kv-log-macro"
|
2020-07-31 08:51:43 +00:00
|
|
|
version = "1.0.7"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"log",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.147"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
|
|
|
version = "0.3.8"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
2022-12-20 11:06:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.5"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.20"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"value-bag",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-10-24 10:18:42 +00:00
|
|
|
name = "malloc_buf"
|
|
|
|
version = "0.0.6"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "2.5.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "muldiv"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "1.0.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "956787520e75e9bd233246045d19f42fb73242759cc57fba9611d940ae96d4b0"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
2020-01-05 09:39:33 +00:00
|
|
|
name = "native-tls"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "0.2.11"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
|
|
|
"log",
|
|
|
|
"openssl",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
|
|
|
"security-framework-sys",
|
|
|
|
"tempfile",
|
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "num-integer"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.1.45"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"autocfg",
|
|
|
|
"num-traits",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-rational"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.4.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"autocfg",
|
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.16"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"autocfg",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2022-10-24 10:18:42 +00:00
|
|
|
name = "objc"
|
|
|
|
version = "0.2.7"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2022-10-24 10:18:42 +00:00
|
|
|
"malloc_buf",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.18.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.10.56"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "729b745ad4a5575dd06a3e1af1414bd330ee561c01b3899eb584baeaa8def17e"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2023-08-14 08:42:43 +00:00
|
|
|
"foreign-types 0.3.2",
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
2021-11-10 14:16:43 +00:00
|
|
|
"once_cell",
|
2022-10-24 10:18:42 +00:00
|
|
|
"openssl-macros",
|
2020-11-23 14:29:31 +00:00
|
|
|
"openssl-sys",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-macros"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.1.1"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2022-10-24 10:18:42 +00:00
|
|
|
]
|
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-probe"
|
2022-03-24 10:05:29 +00:00
|
|
|
version = "0.1.5"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-24 10:05:29 +00:00
|
|
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2020-01-05 09:39:33 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.9.91"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "866b5f16f90776b9bb8dc1e1802ac6f0513de3a7a7465867bfbc563dc737faac"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
2022-03-24 10:05:29 +00:00
|
|
|
[[package]]
|
|
|
|
name = "option-operations"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.5.0"
|
2022-03-24 10:05:29 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "7c26d27bb1aeab65138e4bf7666045169d1717febcc9ff870166be8348b223d0"
|
2022-03-24 10:05:29 +00:00
|
|
|
dependencies = [
|
|
|
|
"paste",
|
|
|
|
]
|
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "parking"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.1.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
2019-12-18 23:04:01 +00:00
|
|
|
[[package]]
|
|
|
|
name = "paste"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.14"
|
2019-12-18 23:04:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
|
2019-12-18 23:04:01 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "percent-encoding"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.3.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.12"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "12cc1b0bf1727a77a54b6654e7b5f1af8604923edc8b81885f8ec92f9e3f0a05"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-utils"
|
2020-05-22 19:45:35 +00:00
|
|
|
version = "0.1.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.27"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
|
2020-11-23 14:29:31 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "polling"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.8.0"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
2022-10-24 10:18:42 +00:00
|
|
|
"autocfg",
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2023-08-14 08:42:43 +00:00
|
|
|
"concurrent-queue",
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"log",
|
2023-08-14 08:42:43 +00:00
|
|
|
"pin-project-lite",
|
|
|
|
"windows-sys",
|
2020-11-23 14:29:31 +00:00
|
|
|
]
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "0.2.17"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "pretty-hex"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.3.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-crate"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.3.1"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2022-10-24 10:18:42 +00:00
|
|
|
"once_cell",
|
2023-02-10 11:07:49 +00:00
|
|
|
"toml_edit",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
2020-11-23 14:29:31 +00:00
|
|
|
version = "1.0.4"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro-error-attr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 1.0.109",
|
2020-11-23 14:29:31 +00:00
|
|
|
"version_check",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
2020-11-23 14:29:31 +00:00
|
|
|
version = "1.0.4"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"version_check",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.66"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2022-10-24 10:18:42 +00:00
|
|
|
"unicode-ident",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.32"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2022-03-24 10:05:29 +00:00
|
|
|
version = "0.8.5"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-24 10:05:29 +00:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"libc",
|
|
|
|
"rand_chacha",
|
|
|
|
"rand_core",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
2021-11-10 14:16:43 +00:00
|
|
|
version = "0.3.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-10 14:16:43 +00:00
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"ppv-lite86",
|
|
|
|
"rand_core",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.6.4"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"getrandom",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2020-01-05 09:39:33 +00:00
|
|
|
name = "redox_syscall"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.5"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
2021-11-10 14:16:43 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2021-11-10 14:16:43 +00:00
|
|
|
]
|
2020-01-05 09:39:33 +00:00
|
|
|
|
|
|
|
[[package]]
|
2023-08-14 08:42:43 +00:00
|
|
|
name = "rustix"
|
|
|
|
version = "0.37.23"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
|
|
|
"errno",
|
|
|
|
"io-lifetimes",
|
|
|
|
"libc",
|
|
|
|
"linux-raw-sys 0.3.8",
|
|
|
|
"windows-sys",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.38.8"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "19ed4fa021d81c8392ce04db050a3da9a60299050b7ae1cf482d862b54a7218f"
|
2022-12-20 11:06:43 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 2.4.0",
|
2022-12-20 11:06:43 +00:00
|
|
|
"errno",
|
|
|
|
"libc",
|
2023-08-14 08:42:43 +00:00
|
|
|
"linux-raw-sys 0.4.5",
|
|
|
|
"windows-sys",
|
2022-12-20 11:06:43 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.15"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "schannel"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.1.22"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"windows-sys",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2020-01-05 09:39:33 +00:00
|
|
|
name = "security-framework"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.9.2"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"bitflags 1.3.2",
|
2020-11-23 14:29:31 +00:00
|
|
|
"core-foundation",
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
"security-framework-sys",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.9.1"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.183"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "32ac8da02677876d532745a130fc9d8e6edfa81a269b107c5b00829b91d8eb3c"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.183"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "aafe972d60b0b9bee71a91b92fee2d4fb3c9d7e8f6b179aa99f27203d99a4816"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.104"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "076066c5f1078eac5b722a31827a8832fe108bed65dfa75e233c89f8206e976c"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"itoa",
|
|
|
|
"ryu",
|
|
|
|
"serde",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "serde_spanned"
|
|
|
|
version = "0.6.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2022-12-20 11:06:43 +00:00
|
|
|
name = "sha1"
|
|
|
|
version = "0.10.5"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
|
|
|
"cpufeatures",
|
2020-11-23 14:29:31 +00:00
|
|
|
"digest",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.8"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
|
2022-10-24 10:18:42 +00:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2021-11-09 21:18:19 +00:00
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.11.0"
|
2021-11-09 21:18:19 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
2021-11-09 21:18:19 +00:00
|
|
|
|
2021-11-10 14:16:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "socket2"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.9"
|
2021-11-10 14:16:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
2021-11-10 14:16:43 +00:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2022-10-24 10:18:42 +00:00
|
|
|
name = "strsim"
|
|
|
|
version = "0.10.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.109"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
|
|
|
version = "2.0.28"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "04361975b3f5e348b2189d8dc55bc942f278b2d482a6a0365de5bdd62d351567"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2022-10-24 10:18:42 +00:00
|
|
|
"unicode-ident",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "system-deps"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "6.1.1"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2021-11-09 21:18:19 +00:00
|
|
|
"cfg-expr",
|
2022-10-24 10:18:42 +00:00
|
|
|
"heck",
|
2020-11-23 14:29:31 +00:00
|
|
|
"pkg-config",
|
|
|
|
"toml",
|
|
|
|
"version-compare",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
2023-08-14 08:42:43 +00:00
|
|
|
name = "target-lexicon"
|
|
|
|
version = "0.12.11"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
|
2020-01-05 09:39:33 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2023-08-14 08:42:43 +00:00
|
|
|
name = "tempfile"
|
|
|
|
version = "3.7.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2023-08-14 08:42:43 +00:00
|
|
|
"cfg-if",
|
|
|
|
"fastrand 2.0.0",
|
|
|
|
"redox_syscall",
|
|
|
|
"rustix 0.38.8",
|
|
|
|
"windows-sys",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
2020-01-05 09:39:33 +00:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.44"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"thiserror-impl",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.44"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "1.6.0"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2020-11-23 14:29:31 +00:00
|
|
|
dependencies = [
|
|
|
|
"tinyvec_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec_macros"
|
2023-02-10 11:07:49 +00:00
|
|
|
version = "0.1.1"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-10 11:07:49 +00:00
|
|
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.7.6"
|
2020-01-05 09:39:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
|
2020-01-05 09:39:33 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"serde",
|
2023-08-14 08:42:43 +00:00
|
|
|
"serde_spanned",
|
|
|
|
"toml_datetime",
|
|
|
|
"toml_edit",
|
2020-01-05 09:39:33 +00:00
|
|
|
]
|
|
|
|
|
2023-02-10 11:07:49 +00:00
|
|
|
[[package]]
|
|
|
|
name = "toml_datetime"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.6.3"
|
2023-02-10 11:07:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
2023-02-10 11:07:49 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml_edit"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.19.14"
|
2023-02-10 11:07:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
|
2023-02-10 11:07:49 +00:00
|
|
|
dependencies = [
|
|
|
|
"indexmap",
|
2023-08-14 08:42:43 +00:00
|
|
|
"serde",
|
|
|
|
"serde_spanned",
|
2023-02-10 11:07:49 +00:00
|
|
|
"toml_datetime",
|
2023-08-14 08:42:43 +00:00
|
|
|
"winnow",
|
2023-02-10 11:07:49 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "tungstenite"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.20.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"byteorder",
|
|
|
|
"bytes",
|
2023-08-14 08:42:43 +00:00
|
|
|
"data-encoding",
|
2020-11-23 14:29:31 +00:00
|
|
|
"http",
|
|
|
|
"httparse",
|
|
|
|
"log",
|
2021-11-10 14:16:43 +00:00
|
|
|
"native-tls",
|
2020-11-23 14:29:31 +00:00
|
|
|
"rand",
|
2022-12-20 11:06:43 +00:00
|
|
|
"sha1",
|
2021-11-10 14:16:43 +00:00
|
|
|
"thiserror",
|
2020-11-23 14:29:31 +00:00
|
|
|
"url",
|
|
|
|
"utf-8",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "1.16.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-bidi"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.13"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
2022-10-24 10:18:42 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.0.11"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.1.22"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"tinyvec",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "url"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "2.4.0"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"form_urlencoded",
|
|
|
|
"idna",
|
|
|
|
"percent-encoding",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "utf-8"
|
2021-11-10 14:16:43 +00:00
|
|
|
version = "0.7.6"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-10 14:16:43 +00:00
|
|
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2023-08-14 08:42:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "utf8parse"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
2021-11-10 14:16:43 +00:00
|
|
|
name = "value-bag"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "1.4.1"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "d92ccd67fb88503048c01b59152a04effd0782d035a83a6d256ce6085f08f4a3"
|
2020-11-23 14:29:31 +00:00
|
|
|
|
|
|
|
[[package]]
|
2021-11-10 14:16:43 +00:00
|
|
|
name = "vcpkg"
|
|
|
|
version = "0.2.15"
|
2020-11-23 14:29:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-10 14:16:43 +00:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "version-compare"
|
2022-12-20 11:06:43 +00:00
|
|
|
version = "0.1.1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-20 11:06:43 +00:00
|
|
|
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-05-22 19:45:35 +00:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-03-24 10:05:29 +00:00
|
|
|
version = "0.9.4"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-24 10:05:29 +00:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "waker-fn"
|
2020-11-23 14:29:31 +00:00
|
|
|
version = "1.1.0"
|
2020-05-22 19:45:35 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
|
2020-05-22 19:45:35 +00:00
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
2022-10-24 10:18:42 +00:00
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-10-24 10:18:42 +00:00
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
2020-07-31 08:51:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.87"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2020-11-23 14:29:31 +00:00
|
|
|
"wasm-bindgen-macro",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-backend"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.87"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"bumpalo",
|
|
|
|
"log",
|
2022-10-24 10:18:42 +00:00
|
|
|
"once_cell",
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2020-11-23 14:29:31 +00:00
|
|
|
"wasm-bindgen-shared",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-futures"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.4.37"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2021-11-10 14:16:43 +00:00
|
|
|
"cfg-if",
|
2020-11-23 14:29:31 +00:00
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.87"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"quote",
|
|
|
|
"wasm-bindgen-macro-support",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.87"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-08-14 08:42:43 +00:00
|
|
|
"syn 2.0.28",
|
2020-11-23 14:29:31 +00:00
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-shared"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.2.87"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
|
2020-07-31 08:51:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "web-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.3.64"
|
2020-07-31 08:51:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
|
2020-07-31 08:51:43 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
2020-07-31 08:51:43 +00:00
|
|
|
]
|
|
|
|
|
2019-11-29 19:39:40 +00:00
|
|
|
[[package]]
|
|
|
|
name = "webrtc-app"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"anyhow",
|
|
|
|
"async-std",
|
|
|
|
"async-tungstenite",
|
2022-10-24 10:18:42 +00:00
|
|
|
"clap",
|
|
|
|
"cocoa",
|
2020-11-23 14:29:31 +00:00
|
|
|
"futures",
|
|
|
|
"gstreamer",
|
|
|
|
"gstreamer-sdp",
|
|
|
|
"gstreamer-webrtc",
|
|
|
|
"rand",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-07-31 08:51:43 +00:00
|
|
|
version = "0.3.9"
|
2019-11-29 19:39:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2019-11-29 19:39:40 +00:00
|
|
|
dependencies = [
|
2020-11-23 14:29:31 +00:00
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
2019-11-29 19:39:40 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2019-11-29 19:39:40 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-11-23 14:29:31 +00:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2022-10-24 10:18:42 +00:00
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2023-02-10 11:07:49 +00:00
|
|
|
dependencies = [
|
|
|
|
"windows-targets",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.1"
|
2023-02-10 11:07:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
2023-02-10 11:07:49 +00:00
|
|
|
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",
|
|
|
|
]
|
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
2022-10-24 10:18:42 +00:00
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
2022-10-24 10:18:42 +00:00
|
|
|
|
2022-12-20 11:06:43 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
2022-12-20 11:06:43 +00:00
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
2022-12-20 11:06:43 +00:00
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-10-24 10:18:42 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
2022-12-20 11:06:43 +00:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
2022-12-20 11:06:43 +00:00
|
|
|
|
2022-10-24 10:18:42 +00:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2023-08-14 08:42:43 +00:00
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winnow"
|
|
|
|
version = "0.5.10"
|
2022-12-20 11:06:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-14 08:42:43 +00:00
|
|
|
checksum = "5504cc7644f4b593cbc05c4a55bf9bd4e94b867c3c0bd440934174d50482427d"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|