lune/Cargo.lock

2734 lines
68 KiB
Text
Raw Normal View History

2023-01-19 01:47:14 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-03-22 19:20:43 +00:00
[[package]]
name = "aho-corasick"
2023-04-29 09:53:39 +01:00
version = "1.0.1"
2023-03-22 19:20:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04"
2023-03-22 19:20:43 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2023-04-29 09:53:39 +01:00
[[package]]
name = "anstream"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6342bd4f5a1205d7f41e94a41a901f5647c938cdfa96036338e8533c9d6c2450"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is-terminal",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
[[package]]
name = "anstyle-parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
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 0.48.0",
]
[[package]]
name = "anstyle-wincon"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
[[package]]
name = "anyhow"
2023-03-25 13:23:23 +00:00
version = "1.0.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
[[package]]
name = "arrayref"
2023-03-25 13:23:23 +00:00
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
2023-03-22 19:20:43 +00:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "async-channel"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-lock"
2023-03-07 21:12:19 +00:00
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
dependencies = [
"event-listener",
]
[[package]]
name = "async-task"
2023-03-25 13:23:23 +00:00
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
2023-02-11 22:29:17 +00:00
[[package]]
name = "async-trait"
2023-03-25 13:23:23 +00:00
version = "0.1.68"
2023-02-11 22:29:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
2023-02-11 22:29:17 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
2023-02-11 22:29:17 +00:00
]
[[package]]
name = "atomic-waker"
2023-04-29 09:53:39 +01:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
2023-03-22 19:20:43 +00:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
"libc",
"winapi",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2023-03-22 19:20:43 +00:00
[[package]]
name = "base-x"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
2023-02-11 14:09:06 +00:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
[[package]]
name = "beef"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
2023-01-19 01:47:14 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-03-22 19:20:43 +00:00
[[package]]
name = "blake2b_simd"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
"arrayref",
"arrayvec 0.5.2",
"constant_time_eq 0.1.5",
]
[[package]]
name = "blake3"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
dependencies = [
"arrayref",
2023-03-22 19:20:43 +00:00
"arrayvec 0.7.2",
"cc",
"cfg-if",
2023-03-25 13:23:23 +00:00
"constant_time_eq 0.2.5",
"digest",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "block-buffer"
2023-03-25 13:23:23 +00:00
version = "0.10.4"
2023-02-11 14:09:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2023-02-11 14:09:06 +00:00
dependencies = [
"generic-array",
]
[[package]]
name = "blocking"
2023-04-29 09:53:39 +01:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
dependencies = [
"async-channel",
"async-lock",
"async-task",
"atomic-waker",
"fastrand",
"futures-lite",
2023-04-29 09:53:39 +01:00
"log",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "bstr"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
dependencies = [
"memchr",
]
[[package]]
name = "bumpalo"
2023-04-29 09:53:39 +01:00
version = "3.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8"
[[package]]
name = "bytecount"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be0fdd54b507df8f22012890aadd099979befdba27713c767993f8380112ca7c"
2023-03-22 19:20:43 +00:00
[[package]]
name = "byteorder"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc10e8cc6b2580fda3f36eb6dc5316657f812a3df879a44a66fc9f0fdbc4855"
2023-02-11 14:09:06 +00: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.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2023-01-19 01:47:14 +00:00
[[package]]
name = "cc"
version = "1.0.79"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2023-01-19 01:47:14 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-03-22 19:20:43 +00:00
[[package]]
name = "clap"
version = "2.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim 0.8.0",
"textwrap",
"unicode-width",
"vec_map",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "clap"
2023-04-29 09:53:39 +01:00
version = "4.2.5"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "8a1f23fa97e1d1641371b51f35535cb26959b8e27ab50d167a8b996b5bada819"
2023-01-19 01:47:14 +00:00
dependencies = [
2023-04-29 09:53:39 +01:00
"clap_builder",
2023-01-19 01:47:14 +00:00
"clap_derive",
"once_cell",
2023-04-29 09:53:39 +01:00
]
[[package]]
name = "clap_builder"
version = "4.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fdc5d93c358224b4d6867ef1356d740de2303e9892edc06c5340daeccd96bab"
dependencies = [
"anstream",
"anstyle",
"bitflags",
"clap_lex",
2023-03-22 19:20:43 +00:00
"strsim 0.10.0",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "clap_derive"
2023-04-29 09:53:39 +01:00
version = "4.2.0"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4"
2023-01-19 01:47:14 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "clap_lex"
2023-04-29 09:53:39 +01:00
version = "0.4.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1"
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-01-19 01:47:14 +00:00
[[package]]
name = "concurrent-queue"
2023-04-29 09:53:39 +01:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
dependencies = [
"crossbeam-utils",
]
2023-02-06 05:13:12 +00:00
[[package]]
name = "console"
version = "0.15.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"unicode-width",
"windows-sys 0.42.0",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "const_fn"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "constant_time_eq"
2023-03-25 13:23:23 +00:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2023-03-22 19:20:43 +00:00
[[package]]
name = "cookie"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc6e25dfc584d06a3dbf775d207ff00d7de98d824c952dd2233dfbb261889a42"
dependencies = [
"time 0.2.27",
"version_check",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "cpufeatures"
2023-04-29 09:53:39 +01:00
version = "0.2.7"
2023-02-11 14:09:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58"
2023-02-11 14:09:06 +00:00
dependencies = [
"libc",
]
[[package]]
name = "crossbeam-utils"
2023-03-07 21:12:19 +00:00
version = "0.8.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
dependencies = [
"cfg-if",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
2023-03-22 19:20:43 +00:00
"rustc_version 0.4.0",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
]
2023-02-06 17:59:48 +00:00
[[package]]
name = "dialoguer"
2023-04-29 09:53:39 +01:00
version = "0.10.4"
2023-02-06 17:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87"
2023-02-06 17:59:48 +00:00
dependencies = [
"console",
"shell-words",
"tempfile",
"zeroize",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "digest"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
2023-02-11 14:09:06 +00:00
]
[[package]]
name = "directories"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
dependencies = [
"dirs-sys",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
dependencies = [
"libc",
"redox_users 0.3.5",
"winapi",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
2023-03-22 19:20:43 +00:00
"redox_users 0.4.3",
"winapi",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "discard"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
[[package]]
name = "dunce"
2023-04-29 09:53:39 +01:00
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
2023-02-06 05:13:12 +00:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding_rs"
version = "0.8.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
dependencies = [
"cfg-if",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "env_logger"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
2023-04-30 19:48:47 +01:00
[[package]]
name = "env_logger"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
dependencies = [
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "erased-serde"
2023-03-07 21:12:19 +00:00
version = "0.3.25"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569"
2023-01-19 01:47:14 +00:00
dependencies = [
"serde",
]
[[package]]
name = "errno"
2023-04-29 09:53:39 +01:00
version = "0.3.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
2023-01-19 01:47:14 +00:00
dependencies = [
"errno-dragonfly",
"libc",
2023-04-29 09:53:39 +01:00
"windows-sys 0.48.0",
2023-01-19 01:47:14 +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",
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2023-02-06 17:59:48 +00:00
[[package]]
name = "fastrand"
2023-02-24 16:48:11 +00:00
version = "1.9.0"
2023-02-06 17:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2023-02-06 17:59:48 +00:00
dependencies = [
"instant",
]
[[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.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
dependencies = [
"percent-encoding",
]
[[package]]
name = "full_moon"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d58cb343df2e63e8a496de3e344e5f2b97f010bc1359e994be38a99586888f5"
dependencies = [
"bytecount",
"cfg-if",
"derive_more",
"full_moon_derive",
"logos",
"paste 0.1.18",
"serde",
"smol_str",
]
[[package]]
name = "full_moon_derive"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b4bd12ce56927d1dc5478d21528ea8c4b93ca85ff8f8043b6a5351a2a3c6f7"
dependencies = [
"indexmap",
"proc-macro2",
"quote",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
]
[[package]]
name = "futures-channel"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
[[package]]
name = "futures-io"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
[[package]]
name = "futures-lite"
2023-04-29 09:53:39 +01:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "futures-macro"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2023-01-19 01:47:14 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "futures-sink"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2023-01-19 01:47:14 +00:00
[[package]]
name = "futures-task"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2023-01-19 01:47:14 +00:00
[[package]]
name = "futures-util"
2023-04-29 09:53:39 +01:00
version = "0.3.28"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2023-01-19 01:47:14 +00:00
dependencies = [
"futures-core",
"futures-macro",
2023-02-11 14:09:06 +00:00
"futures-sink",
2023-01-19 01:47:14 +00:00
"futures-task",
"pin-project-lite",
"pin-utils",
"slab",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "generic-array"
2023-04-29 09:53:39 +01:00
version = "0.14.7"
2023-02-11 14:09:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-02-11 14:09:06 +00:00
dependencies = [
"typenum",
"version_check",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2023-04-29 09:53:39 +01:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if",
"libc",
2023-03-22 19:20:43 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "glam"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
2023-03-24 11:38:27 +00:00
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "h2"
2023-04-29 09:53:39 +01:00
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-01-19 01:47:14 +00:00
[[package]]
name = "heck"
version = "0.4.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2023-01-19 01:47:14 +00:00
2023-03-22 19:20:43 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
2023-02-11 22:43:06 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 22:43:06 +00:00
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
[[package]]
name = "http"
2023-02-24 16:48:11 +00:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2023-03-22 19:20:43 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
2023-04-29 09:53:39 +01:00
version = "0.14.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4"
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.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
dependencies = [
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "hyper-tungstenite"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "880b8b1c98a5ec2a505c7c90db6d3f6f1f480af5655d9c5b55facc9382a5a5b5"
dependencies = [
"hyper",
"pin-project",
"tokio",
"tokio-tungstenite",
"tungstenite",
]
[[package]]
name = "idna"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-03-24 11:38:27 +00:00
[[package]]
name = "include_dir"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e"
dependencies = [
"glob",
"include_dir_macros",
]
[[package]]
name = "include_dir_macros"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f"
dependencies = [
"proc-macro2",
"quote",
]
[[package]]
name = "indexmap"
2023-03-25 13:23:23 +00:00
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown",
]
2023-02-06 17:59:48 +00:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "io-lifetimes"
2023-04-29 09:53:39 +01:00
version = "1.0.10"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220"
2023-01-19 01:47:14 +00:00
dependencies = [
2023-03-25 13:23:23 +00:00
"hermit-abi 0.3.1",
2023-01-19 01:47:14 +00:00
"libc",
2023-04-29 09:53:39 +01:00
"windows-sys 0.48.0",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "ipnet"
2023-04-29 09:53:39 +01:00
version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2023-01-19 01:47:14 +00:00
[[package]]
name = "is-terminal"
2023-04-29 09:53:39 +01:00
version = "0.4.7"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
2023-01-19 01:47:14 +00:00
dependencies = [
2023-02-11 22:43:06 +00:00
"hermit-abi 0.3.1",
2023-01-19 01:47:14 +00:00
"io-lifetimes",
"rustix",
2023-04-29 09:53:39 +01:00
"windows-sys 0.48.0",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "itoa"
2023-03-07 21:12:19 +00:00
version = "1.0.6"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2023-01-19 01:47:14 +00:00
[[package]]
name = "js-sys"
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
dependencies = [
"wasm-bindgen",
]
2023-02-06 05:13:12 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2023-01-19 01:47:14 +00:00
[[package]]
name = "libc"
2023-04-29 09:53:39 +01:00
version = "0.2.142"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317"
2023-01-19 01:47:14 +00:00
2023-03-22 19:20:43 +00:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
"safemem",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "linux-raw-sys"
2023-04-29 09:53:39 +01:00
version = "0.3.6"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "b64f40e5e03e0d54f03845c8197d0291253cdbedfb1cb46b13c2c117554a9f4c"
2023-01-19 01:47:14 +00:00
[[package]]
name = "lock_api"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
dependencies = [
"autocfg",
"scopeguard",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
[[package]]
name = "logos"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1"
dependencies = [
"logos-derive",
]
[[package]]
name = "logos-derive"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c"
dependencies = [
"beef",
"fnv",
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"regex-syntax 0.6.29",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "luau0-src"
2023-04-29 09:53:39 +01:00
version = "0.5.6+luau573"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "fd5280f9a7f35d23b9167c2e3749955e11b0b44d052a0711f596ac61c735b5ea"
2023-01-19 01:47:14 +00:00
dependencies = [
"cc",
]
[[package]]
name = "lune"
2023-03-27 15:03:58 +01:00
version = "0.6.5"
2023-01-19 01:47:14 +00:00
dependencies = [
"anyhow",
2023-02-11 22:29:17 +00:00
"async-trait",
"blocking",
2023-02-06 05:13:12 +00:00
"console",
2023-02-06 17:59:48 +00:00
"dialoguer",
"directories",
"dunce",
2023-02-11 14:09:06 +00:00
"futures-util",
"hyper",
2023-02-11 14:09:06 +00:00
"hyper-tungstenite",
"lune-roblox",
2023-01-19 01:47:14 +00:00
"mlua",
2023-03-25 16:37:12 +00:00
"once_cell",
"os_str_bytes",
"pin-project",
2023-03-22 19:20:43 +00:00
"rbx_cookie",
2023-02-06 00:13:58 +00:00
"reqwest",
"serde",
"serde_json",
2023-02-24 16:44:09 +00:00
"serde_yaml",
2023-02-06 00:13:58 +00:00
"tokio",
2023-02-11 22:29:17 +00:00
"tokio-tungstenite",
2023-02-25 12:41:50 +00:00
"toml",
"urlencoding",
2023-02-06 00:13:58 +00:00
]
[[package]]
name = "lune-cli"
2023-03-27 15:03:58 +01:00
version = "0.6.5"
2023-02-06 00:13:58 +00:00
dependencies = [
"anyhow",
2023-04-29 09:53:39 +01:00
"clap 4.2.5",
"console",
2023-04-30 19:48:47 +01:00
"env_logger 0.10.0",
2023-02-06 00:13:58 +00:00
"full_moon",
2023-02-22 21:10:20 +00:00
"futures-util",
2023-03-24 11:38:27 +00:00
"include_dir",
2023-02-06 00:13:58 +00:00
"lune",
2023-03-25 16:37:12 +00:00
"once_cell",
"regex",
2023-01-19 01:47:14 +00:00
"serde",
"serde_json",
"serde_yaml",
"tokio",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "lune-roblox"
2023-03-27 15:03:58 +01:00
version = "0.6.5"
dependencies = [
"anyhow",
"glam",
"mlua",
2023-03-25 16:37:12 +00:00
"once_cell",
2023-03-15 09:18:13 +00:00
"rand",
"rbx_binary",
"rbx_dom_weak",
"rbx_reflection",
"rbx_reflection_database",
"rbx_xml",
"thiserror",
]
[[package]]
name = "lz4"
version = "1.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e9e2dd86df36ce760a60f6ff6ad526f7ba1f14ba0356f8254fb6905e6494df1"
dependencies = [
"libc",
"lz4-sys",
]
[[package]]
name = "lz4-sys"
version = "1.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d27b317e207b10f69f5e75494119e391a96f48861ae870d1da6edac98ca900"
dependencies = [
"cc",
"libc",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "mime"
2023-03-25 13:23:23 +00:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mio"
2023-02-24 16:48:11 +00:00
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
dependencies = [
"libc",
"log",
2023-03-22 19:20:43 +00:00
"wasi 0.11.0+wasi-snapshot-preview1",
2023-02-24 16:48:11 +00:00
"windows-sys 0.45.0",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "mlua"
2023-03-07 21:12:19 +00:00
version = "0.8.8"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "ea8ce6788556a67d90567809c7de94dfef2ff1f47ff897aeee935bcfbcdf5735"
2023-01-19 01:47:14 +00:00
dependencies = [
"bstr",
"cc",
"erased-serde",
"luau0-src",
"num-traits",
"once_cell",
"pkg-config",
"rustc-hash",
"serde",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
dependencies = [
"hermit-abi 0.2.6",
"libc",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "once_cell"
2023-02-24 16:48:11 +00:00
version = "1.17.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2023-01-19 01:47:14 +00:00
[[package]]
name = "os_str_bytes"
2023-03-25 13:23:23 +00:00
version = "6.5.0"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267"
dependencies = [
"memchr",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "parking"
2023-04-29 09:53:39 +01:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
2023-01-19 01:47:14 +00:00
[[package]]
name = "parking_lot"
version = "0.12.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
dependencies = [
"cfg-if",
"libc",
2023-03-22 19:20:43 +00:00
"redox_syscall 0.2.16",
"smallvec",
"windows-sys 0.45.0",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "paste"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
dependencies = [
"paste-impl",
"proc-macro-hack",
]
[[package]]
name = "paste"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79"
[[package]]
name = "paste-impl"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
dependencies = [
"proc-macro-hack",
]
[[package]]
name = "percent-encoding"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "pin-project"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
dependencies = [
"proc-macro2",
"quote",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2023-03-22 19:20:43 +00:00
[[package]]
name = "plist"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd9647b268a3d3e14ff09c23201133a62589c658db02bb7388c7246aafe0590"
dependencies = [
"base64 0.21.0",
"indexmap",
"line-wrap",
"quick-xml",
"serde",
"time 0.3.20",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro-hack"
version = "0.5.20+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2023-01-19 01:47:14 +00:00
[[package]]
name = "proc-macro2"
2023-04-29 09:53:39 +01:00
version = "1.0.56"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
2023-01-19 01:47:14 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "profiling"
2023-04-29 09:53:39 +01:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "332cd62e95873ea4f41f3dfd6bbbfc5b52aec892d7e8d534197c4720a0bbbab2"
dependencies = [
"profiling-procmacros",
]
[[package]]
name = "profiling-procmacros"
2023-04-29 09:53:39 +01:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "a10adb8d151bb1280afb8bed41ae5db26be1b056964947133c7525b0bf39c0b0"
dependencies = [
"quote",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "quick-xml"
2023-04-29 09:53:39 +01:00
version = "0.28.2"
2023-03-22 19:20:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "0ce5e73202a820a31f8a0ee32ada5e21029c81fd9e3ebf668a40832e4219d9d1"
2023-03-22 19:20:43 +00:00
dependencies = [
"memchr",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "quote"
2023-03-25 13:23:23 +00:00
version = "1.0.26"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2023-01-19 01:47:14 +00:00
dependencies = [
"proc-macro2",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-04-29 09:53:39 +01:00
"getrandom 0.2.9",
2023-02-11 14:09:06 +00:00
]
[[package]]
name = "rbx_binary"
2023-04-29 09:53:39 +01:00
version = "0.7.0"
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"log",
"lz4",
"profiling",
"rbx_dom_weak",
"rbx_reflection",
"rbx_reflection_database",
"thiserror",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "rbx_cookie"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d909d60469944842c9d204fa44afc90d9cb1e1f3f30a29bd1def490edd525a96"
dependencies = [
"byteorder 0.5.3",
"clap 2.34.0",
"cookie",
"dirs",
2023-04-30 19:48:47 +01:00
"env_logger 0.9.3",
2023-03-22 19:20:43 +00:00
"log",
"plist",
"winapi",
"winreg",
]
[[package]]
name = "rbx_dom_weak"
version = "2.4.0"
2023-04-29 09:53:39 +01:00
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"rbx_types",
"serde",
]
[[package]]
name = "rbx_reflection"
version = "4.2.0"
2023-04-29 09:53:39 +01:00
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"rbx_types",
"serde",
]
[[package]]
name = "rbx_reflection_database"
2023-04-29 09:53:39 +01:00
version = "0.2.6+roblox-572"
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"lazy_static",
"rbx_reflection",
"rmp-serde",
"serde",
]
[[package]]
name = "rbx_types"
2023-04-29 09:53:39 +01:00
version = "1.5.0"
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"base64 0.13.1",
"bitflags",
"blake3",
"lazy_static",
"rand",
"serde",
"thiserror",
]
[[package]]
name = "rbx_xml"
2023-04-29 09:53:39 +01:00
version = "0.13.0"
source = "git+https://github.com/rojo-rbx/rbx-dom?rev=e4c94ab7b495adb83c0c5fc055167b3e2b4b637a#e4c94ab7b495adb83c0c5fc055167b3e2b4b637a"
dependencies = [
"base64 0.13.1",
"log",
"rbx_dom_weak",
"rbx_reflection",
"rbx_reflection_database",
"xml-rs",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "redox_syscall"
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
2023-04-29 09:53:39 +01:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "redox_users"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de0737333e7a9502c789a36d7c7fa6092a49895d4faa31ca5df163857ded2e9d"
dependencies = [
"getrandom 0.1.16",
"redox_syscall 0.1.57",
"rust-argon2",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2023-04-29 09:53:39 +01:00
"getrandom 0.2.9",
2023-03-22 19:20:43 +00:00
"redox_syscall 0.2.16",
"thiserror",
]
[[package]]
name = "regex"
2023-04-29 09:53:39 +01:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370"
dependencies = [
2023-03-22 19:20:43 +00:00
"aho-corasick",
"memchr",
2023-04-29 09:53:39 +01:00
"regex-syntax 0.7.1",
]
[[package]]
name = "regex-syntax"
2023-03-25 13:23:23 +00:00
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2023-04-29 09:53:39 +01:00
[[package]]
name = "regex-syntax"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c"
[[package]]
name = "reqwest"
2023-04-29 09:53:39 +01:00
version = "0.11.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "13293b639a097af28fc8a90f22add145a9c954e49d77da06263d58cf44d5fb91"
dependencies = [
2023-02-11 14:09:06 +00:00
"base64 0.21.0",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"log",
"mime",
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
]
[[package]]
name = "rmp"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f"
dependencies = [
2023-03-22 19:20:43 +00:00
"byteorder 1.4.3",
"num-traits",
"paste 1.0.12",
]
[[package]]
name = "rmp-serde"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ce7d70c926fe472aed493b902010bccc17fa9f7284145cb8772fd22fdb052d8"
dependencies = [
2023-03-22 19:20:43 +00:00
"byteorder 1.4.3",
"rmp",
"serde",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "rust-argon2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb"
dependencies = [
"base64 0.13.1",
"blake2b_simd",
"constant_time_eq 0.1.5",
"crossbeam-utils",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2023-03-22 19:20:43 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
"semver 0.9.0",
]
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2023-03-25 13:23:23 +00:00
"semver 1.0.17",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "rustix"
2023-04-29 09:53:39 +01:00
version = "0.37.17"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "bc809f704c03a812ac71f22456c857be34185cac691a4316f27ab0f633bb9009"
2023-01-19 01:47:14 +00:00
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-04-29 09:53:39 +01:00
"windows-sys 0.48.0",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "rustls"
version = "0.20.8"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
dependencies = [
2023-02-11 14:09:06 +00:00
"base64 0.21.0",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "ryu"
2023-03-07 21:12:19 +00:00
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2023-03-22 19:20:43 +00:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
"semver-parser",
]
[[package]]
name = "semver"
2023-03-25 13:23:23 +00:00
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
2023-03-22 19:20:43 +00:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2023-01-19 01:47:14 +00:00
[[package]]
name = "serde"
2023-04-29 09:53:39 +01:00
version = "1.0.160"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
2023-01-19 01:47:14 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-04-29 09:53:39 +01:00
version = "1.0.160"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
2023-01-19 01:47:14 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "serde_json"
2023-04-29 09:53:39 +01:00
version = "1.0.96"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1"
2023-01-19 01:47:14 +00:00
dependencies = [
2023-02-16 11:05:54 +00:00
"indexmap",
2023-01-19 01:47:14 +00:00
"itoa",
"ryu",
"serde",
]
2023-02-25 12:41:50 +00:00
[[package]]
name = "serde_spanned"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
dependencies = [
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_yaml"
2023-04-29 09:53:39 +01:00
version = "0.9.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "d9d684e3ec7de3bf5466b32bd75303ac16f0736426e5a4e0d6e489559ce1249c"
dependencies = [
"indexmap",
"itoa",
"ryu",
"serde",
"unsafe-libyaml",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "sha1"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
dependencies = [
"sha1_smol",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "sha1"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2023-02-06 17:59:48 +00:00
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2023-01-19 01:47:14 +00:00
[[package]]
name = "signal-hook-registry"
2023-02-11 22:43:06 +00:00
version = "1.4.1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-11 22:43:06 +00:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2023-01-19 01:47:14 +00:00
dependencies = [
"libc",
]
[[package]]
name = "slab"
2023-02-24 16:48:11 +00:00
version = "0.4.8"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2023-01-19 01:47:14 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.10.0"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2023-01-19 01:47:14 +00:00
[[package]]
name = "smol_str"
2023-02-06 00:13:58 +00:00
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-06 00:13:58 +00:00
checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9"
dependencies = [
"serde",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "socket2"
2023-03-07 21:12:19 +00:00
version = "0.4.9"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2023-01-19 01:47:14 +00:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2023-03-22 19:20:43 +00:00
[[package]]
name = "standback"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
dependencies = [
"version_check",
]
[[package]]
name = "stdweb"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
dependencies = [
"discard",
"rustc_version 0.2.3",
"stdweb-derive",
"stdweb-internal-macros",
"stdweb-internal-runtime",
"wasm-bindgen",
]
[[package]]
name = "stdweb-derive"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
dependencies = [
"proc-macro2",
"quote",
"serde",
"serde_derive",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
2023-03-22 19:20:43 +00:00
]
[[package]]
name = "stdweb-internal-macros"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
dependencies = [
"base-x",
"proc-macro2",
"quote",
"serde",
"serde_derive",
"serde_json",
"sha1 0.6.1",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
2023-03-22 19:20:43 +00:00
]
[[package]]
name = "stdweb-internal-runtime"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2023-01-19 01:47:14 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2023-01-19 01:47:14 +00:00
[[package]]
name = "syn"
2023-02-24 16:48:11 +00:00
version = "1.0.109"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-24 16:48:11 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2023-01-19 01:47:14 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-03-25 13:23:23 +00:00
[[package]]
name = "syn"
2023-04-29 09:53:39 +01:00
version = "2.0.15"
2023-03-25 13:23:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
2023-03-25 13:23:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-02-06 17:59:48 +00:00
[[package]]
name = "tempfile"
2023-04-29 09:53:39 +01:00
version = "3.5.0"
2023-02-06 17:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2023-02-06 17:59:48 +00:00
dependencies = [
"cfg-if",
"fastrand",
2023-04-29 09:53:39 +01:00
"redox_syscall 0.3.5",
2023-02-26 16:18:58 +00:00
"rustix",
2023-04-29 09:53:39 +01:00
"windows-sys 0.45.0",
2023-02-06 17:59:48 +00:00
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "termcolor"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
dependencies = [
"winapi-util",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
2023-03-25 13:23:23 +00:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-03-25 13:23:23 +00:00
version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "time"
version = "0.2.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
dependencies = [
"const_fn",
"libc",
"standback",
"stdweb",
"time-macros 0.1.1",
"version_check",
"winapi",
]
[[package]]
name = "time"
version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
dependencies = [
"itoa",
"serde",
"time-core",
"time-macros 0.2.8",
]
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
dependencies = [
"proc-macro-hack",
"time-macros-impl",
]
[[package]]
name = "time-macros"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
dependencies = [
"time-core",
]
[[package]]
name = "time-macros-impl"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"standback",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
2023-03-22 19:20:43 +00:00
]
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2023-04-29 09:53:39 +01:00
version = "1.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
dependencies = [
"autocfg",
"bytes",
"libc",
"mio",
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
2023-04-29 09:53:39 +01:00
"windows-sys 0.48.0",
]
[[package]]
name = "tokio-macros"
2023-04-29 09:53:39 +01:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
dependencies = [
"proc-macro2",
"quote",
2023-04-29 09:53:39 +01:00
"syn 2.0.15",
]
[[package]]
name = "tokio-rustls"
version = "0.23.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
dependencies = [
"rustls",
"tokio",
"webpki",
]
2023-02-11 14:09:06 +00:00
[[package]]
name = "tokio-tungstenite"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
dependencies = [
"futures-util",
"log",
"tokio",
"tungstenite",
]
[[package]]
name = "tokio-util"
2023-04-29 09:53:39 +01:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2023-02-25 12:41:50 +00:00
[[package]]
name = "toml"
2023-03-25 13:23:23 +00:00
version = "0.7.3"
2023-02-25 12:41:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
2023-02-25 12:41:50 +00:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2023-03-25 13:23:23 +00:00
version = "0.19.8"
2023-02-25 12:41:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
2023-02-25 12:41:50 +00:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
dependencies = [
"once_cell",
]
[[package]]
name = "try-lock"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2023-02-11 14:09:06 +00:00
[[package]]
name = "tungstenite"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
dependencies = [
"base64 0.13.1",
2023-03-22 19:20:43 +00:00
"byteorder 1.4.3",
2023-02-11 14:09:06 +00:00
"bytes",
"http",
"httparse",
"log",
"rand",
2023-03-22 19:20:43 +00:00
"sha1 0.10.5",
2023-02-11 14:09:06 +00:00
"thiserror",
"url",
"utf-8",
]
[[package]]
name = "typenum"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
[[package]]
name = "unicode-bidi"
2023-03-25 13:23:23 +00:00
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2023-01-19 01:47:14 +00:00
[[package]]
name = "unicode-ident"
2023-03-07 21:12:19 +00:00
version = "1.0.8"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-07 21:12:19 +00:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2023-01-19 01:47:14 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2023-02-06 05:13:12 +00:00
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
name = "unsafe-libyaml"
2023-04-29 09:53:39 +01:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "1865806a559042e51ab5414598446a5871b561d21b6764f2eabb0dd481d880a6"
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "urlencoding"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9"
2023-02-11 14:09:06 +00:00
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2023-04-29 09:53:39 +01:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2023-03-22 19:20:43 +00:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2023-01-19 01:47:14 +00:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2023-03-22 19:20:43 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2023-01-19 01:47:14 +00:00
[[package]]
name = "wasm-bindgen"
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
dependencies = [
"proc-macro2",
"quote",
2023-03-25 13:23:23 +00:00
"syn 1.0.109",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.84"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
[[package]]
name = "web-sys"
version = "0.3.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
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"
version = "0.22.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
dependencies = [
"webpki",
]
2023-01-19 01:47:14 +00: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",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-29 09:53:39 +01:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2023-01-19 01:47:14 +00:00
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-29 09:53:39 +01:00
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
]
[[package]]
name = "windows-targets"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
2023-04-29 09:53:39 +01:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
]
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_i686_gnu"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_i686_msvc"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2023-01-19 01:47:14 +00:00
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2023-01-19 01:47:14 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-03-25 13:23:23 +00:00
version = "0.42.2"
2023-01-19 01:47:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-25 13:23:23 +00:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-04-29 09:53:39 +01:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2023-02-25 12:41:50 +00:00
[[package]]
name = "winnow"
2023-04-29 09:53:39 +01:00
version = "0.4.4"
2023-02-25 12:41:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "5617da7e1f97bf363947d767b91aaf3c2bbc19db7fda9c65af1278713d58e0a2"
2023-02-25 12:41:50 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
2023-02-06 17:59:48 +00:00
[[package]]
name = "xml-rs"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2023-02-06 17:59:48 +00:00
[[package]]
name = "zeroize"
2023-04-29 09:53:39 +01:00
version = "1.6.0"
2023-02-06 17:59:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-29 09:53:39 +01:00
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"