anchor/Cargo.lock

4825 lines
112 KiB
Plaintext
Raw Normal View History

2020-12-31 16:03:34 -08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-02-26 01:31:48 -08:00
version = 3
2021-01-02 22:40:17 -08:00
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
dependencies = [
"lazy_static",
"regex",
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aead"
version = "0.4.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"generic-array",
2021-01-02 22:40:17 -08:00
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "aes"
version = "0.7.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher 0.3.0",
"cpufeatures",
"opaque-debug",
]
[[package]]
name = "aes-gcm-siv"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589c637f0e68c877bbd59a4599bbe849cac8e5f3e4b5a3ebae8f528cd218dcdc"
dependencies = [
"aead",
"aes",
"cipher 0.3.0",
"ctr",
"polyval",
"subtle",
"zeroize",
]
2021-01-02 22:40:17 -08:00
2022-03-16 12:55:15 -07:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom 0.2.5",
"once_cell",
"version_check",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "aho-corasick"
2021-08-31 14:52:41 -07:00
version = "0.7.18"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2020-12-31 16:03:34 -08:00
dependencies = [
"memchr",
]
2021-08-04 12:29:38 -07:00
[[package]]
name = "aliasable"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
2022-07-04 20:58:31 -07:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ef4730490ad1c4eae5c4325b2a95f521d023e5c885853ff7aca0a6a1631db3"
[[package]]
name = "alloc-stdlib"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "697ed7edc0f1711de49ce108c541623a0af97c6c60b2f6e2b65229847ac843c2"
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "alloc-traits"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b2d54853319fd101b8dd81de382bcbf3e03410a64d8928bbee85a3e7dcde483"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-09 22:03:14 -08:00
name = "anchor-attribute-access-control"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2020-12-31 16:03:34 -08:00
dependencies = [
"anchor-syn",
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
"regex",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-09 22:03:14 -08:00
name = "anchor-attribute-account"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-01-09 22:03:14 -08:00
dependencies = [
"anchor-syn",
"anyhow",
"bs58 0.4.0",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
"rustversion",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-09 22:03:14 -08:00
]
2021-12-03 15:49:38 -08:00
[[package]]
name = "anchor-attribute-constant"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-12-03 15:49:38 -08:00
dependencies = [
"anchor-syn",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
"syn 1.0.98",
2021-12-03 15:49:38 -08:00
]
2021-01-15 23:05:26 -08:00
[[package]]
name = "anchor-attribute-error"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-01-15 23:05:26 -08:00
dependencies = [
"anchor-syn",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-15 23:05:26 -08:00
]
2021-03-24 20:19:29 -07:00
[[package]]
name = "anchor-attribute-event"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-03-24 20:19:29 -07:00
dependencies = [
"anchor-syn",
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-03-24 20:19:29 -07:00
]
2021-02-07 07:45:10 -08:00
[[package]]
name = "anchor-attribute-interface"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-02-07 07:45:10 -08:00
dependencies = [
"anchor-syn",
"anyhow",
2022-01-27 16:32:58 -08:00
"heck 0.3.3",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-02-07 07:45:10 -08:00
]
2021-01-09 22:03:14 -08:00
[[package]]
name = "anchor-attribute-program"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2020-12-31 16:03:34 -08:00
dependencies = [
"anchor-syn",
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "anchor-attribute-state"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
dependencies = [
"anchor-syn",
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "anchor-cli"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-05-22 16:06:08 -07:00
"anchor-client",
"anchor-lang",
2020-12-31 16:03:34 -08:00
"anchor-syn",
"anyhow",
2021-08-08 02:11:48 -07:00
"cargo_toml",
"chrono",
2022-03-16 12:55:15 -07:00
"clap 3.1.6",
"dirs",
"flate2",
2022-01-27 16:32:58 -08:00
"heck 0.3.3",
2021-08-08 02:11:48 -07:00
"pathdiff",
"portpicker",
"rand 0.7.3",
2021-08-08 02:11:48 -07:00
"reqwest",
2022-03-16 12:55:15 -07:00
"semver 1.0.6",
2021-01-02 22:40:17 -08:00
"serde",
2020-12-31 16:03:34 -08:00
"serde_json",
"shellexpand",
"solana-cli-config",
2021-01-04 18:29:16 -08:00
"solana-client",
"solana-faucet",
"solana-program",
2021-01-02 22:40:17 -08:00
"solana-sdk",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-08-08 02:11:48 -07:00
"tar",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"toml",
"walkdir",
2020-12-31 16:03:34 -08:00
]
2021-01-29 08:02:34 -08:00
[[package]]
name = "anchor-client"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-01-29 08:02:34 -08:00
dependencies = [
"anchor-lang",
2021-03-24 20:19:29 -07:00
"anyhow",
"regex",
2021-05-22 16:06:08 -07:00
"serde",
"solana-account-decoder",
2021-01-29 08:02:34 -08:00
"solana-client",
"solana-sdk",
"thiserror",
"url",
2021-01-29 08:02:34 -08:00
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-09 22:03:14 -08:00
name = "anchor-derive-accounts"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2020-12-31 16:03:34 -08:00
dependencies = [
"anchor-syn",
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2020-12-31 16:03:34 -08:00
]
2021-01-14 22:35:50 -08:00
[[package]]
name = "anchor-lang"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-01-14 22:35:50 -08:00
dependencies = [
"anchor-attribute-access-control",
"anchor-attribute-account",
2021-12-03 15:49:38 -08:00
"anchor-attribute-constant",
2021-01-15 23:05:26 -08:00
"anchor-attribute-error",
2021-03-24 20:19:29 -07:00
"anchor-attribute-event",
2021-02-07 07:45:10 -08:00
"anchor-attribute-interface",
2021-01-14 22:35:50 -08:00
"anchor-attribute-program",
"anchor-attribute-state",
2021-01-14 22:35:50 -08:00
"anchor-derive-accounts",
"arrayref",
2021-03-24 20:19:29 -07:00
"base64 0.13.0",
2021-12-05 11:14:16 -08:00
"bincode",
2021-03-23 10:40:32 -07:00
"borsh",
2021-04-17 12:07:48 -07:00
"bytemuck",
2021-01-14 22:35:50 -08:00
"solana-program",
"thiserror",
]
2021-01-15 19:16:17 -08:00
[[package]]
name = "anchor-spl"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2021-01-15 19:16:17 -08:00
dependencies = [
"anchor-lang",
2022-09-24 11:11:12 -07:00
"borsh",
"mpl-token-metadata",
"serum_dex",
"solana-program",
"spl-associated-token-account",
"spl-token",
2021-01-15 19:16:17 -08:00
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "anchor-syn"
2022-07-05 13:32:55 -07:00
version = "0.25.0"
2020-12-31 16:03:34 -08:00
dependencies = [
"anyhow",
"bs58 0.3.1",
2022-01-27 16:32:58 -08:00
"heck 0.3.3",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2021-06-27 13:17:05 -07:00
"proc-macro2-diagnostics",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2020-12-31 16:03:34 -08:00
"serde",
2021-01-02 22:40:17 -08:00
"serde_json",
2022-07-04 20:58:31 -07:00
"sha2 0.9.9",
"syn 1.0.98",
"thiserror",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "ansi_term"
2022-03-16 12:55:15 -07:00
version = "0.12.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "anyhow"
2022-03-16 12:55:15 -07:00
version = "1.0.56"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
2020-12-31 16:03:34 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "arrayref"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
2021-01-02 22:40:17 -08:00
[[package]]
name = "assert_matches"
2021-03-10 05:30:10 -08:00
version = "1.5.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 05:30:10 -08:00
checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9"
2021-01-02 22:40:17 -08:00
2020-12-31 16:03:34 -08:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "async-compression"
version = "0.3.14"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "345fd392ab01f746c717b1357165b76f0b67a60192007b234058c9045fdcf695"
2020-12-31 16:03:34 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"brotli",
"flate2",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2020-12-31 16:03:34 -08:00
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "async-mutex"
version = "1.4.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
"event-listener",
]
2020-12-31 16:03:34 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "async-trait"
version = "0.1.56"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "96cf8829f67d2eab0b2dfa42c5d0ef737e0724e4a82b01b3e292456202b19716"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
"quote 1.0.15",
"syn 1.0.98",
]
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
2021-01-02 22:40:17 -08:00
"libc",
2022-07-04 20:58:31 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "autocfg"
version = "1.1.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-01-02 22:40:17 -08:00
[[package]]
name = "base64"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
2022-07-04 20:58:31 -07:00
[[package]]
name = "base64ct"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bdca834647821e0b13d9539a8634eb62d3501b6b6c2cec1722786ee6671b851"
2020-12-31 16:03:34 -08:00
[[package]]
name = "bincode"
2021-08-31 14:52:41 -07:00
version = "1.3.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
2020-12-31 16:03:34 -08:00
dependencies = [
"serde",
]
[[package]]
name = "bitflags"
version = "1.3.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-12-31 16:03:34 -08:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "bitmaps"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
dependencies = [
"typenum",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "blake3"
version = "1.3.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a08e53fc5a564bb15bfe6fae56bd71522205f1f91893f9c0116edad6496c183f"
2021-01-02 22:40:17 -08:00
dependencies = [
"arrayref",
"arrayvec",
2021-01-02 22:40:17 -08:00
"cc",
"cfg-if",
2021-01-02 22:40:17 -08:00
"constant_time_eq",
"digest 0.10.3",
2020-12-31 16:03:34 -08:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"block-padding",
"generic-array",
2021-01-02 22:40:17 -08:00
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "block-buffer"
version = "0.10.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2020-12-31 16:03:34 -08:00
dependencies = [
"generic-array",
2020-12-31 16:03:34 -08:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
2021-02-26 01:31:48 -08:00
[[package]]
name = "borsh"
2022-03-16 12:55:15 -07:00
version = "0.9.3"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "15bf3650200d8bffa99015595e10f1fbd17de07abbc25bb067da79e769939bfa"
2021-02-26 01:31:48 -08:00
dependencies = [
"borsh-derive",
2022-07-04 20:58:31 -07:00
"hashbrown 0.11.2",
]
[[package]]
name = "borsh-derive"
2022-03-16 12:55:15 -07:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "6441c552f230375d18e3cc377677914d2ca2b0d36e52129fe15450a2dce46775"
dependencies = [
"borsh-derive-internal",
"borsh-schema-derive-internal",
2021-08-31 14:52:41 -07:00
"proc-macro-crate 0.1.5",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
"syn 1.0.98",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "borsh-derive-internal"
2022-03-16 12:55:15 -07:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "5449c28a7b352f2d1e592a8a28bf139bc71afb0764a14f3c02500935d8c44065"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
[[package]]
name = "borsh-schema-derive-internal"
2022-03-16 12:55:15 -07:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "cdbd5696d8bfa21d53d9fe39a714a18538bad11492a42d066dbbc395fb1951c0"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
[[package]]
name = "brotli"
version = "3.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "bs58"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "476e9cd489f9e121e02ffa6014a8ef220ecb15c05ed23fc34cca13925dc283fb"
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
2021-01-02 22:40:17 -08:00
[[package]]
name = "bumpalo"
2022-03-16 12:55:15 -07:00
version = "3.9.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
2021-01-02 22:40:17 -08:00
2020-12-31 16:03:34 -08:00
[[package]]
name = "bv"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8834bb1d8ee5dc048ee3124f2c7c1afcc6bc9aed03f11e9dfd8c69470a5db340"
dependencies = [
"feature-probe",
"serde",
]
2021-04-17 12:07:48 -07:00
[[package]]
name = "bytemuck"
2022-03-16 12:55:15 -07:00
version = "1.8.0"
2021-04-17 12:07:48 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "0e851ca7c24871e7336801608a4797d7376545b6928a10d32d75685687141ead"
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e215f8c2f9f79cb53c8335e687ffd07d5bfcb6fe5fc80723762d0be46e7cc54"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
2021-04-17 12:07:48 -07:00
2020-12-31 16:03:34 -08:00
[[package]]
name = "byteorder"
2021-08-31 14:52:41 -07:00
version = "1.4.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-12-31 16:03:34 -08:00
2021-01-31 06:08:32 -08:00
[[package]]
name = "bytes"
2021-08-31 14:52:41 -07:00
version = "1.1.0"
2021-01-31 06:08:32 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-01-31 06:08:32 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "bzip2"
version = "0.4.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
2021-01-02 22:40:17 -08:00
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
2021-08-31 14:52:41 -07:00
version = "0.1.11+1.0.8"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
2021-01-02 22:40:17 -08:00
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "caps"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61bf7211aad104ce2769ec05efcdfabf85ee84ac92461d142f22cf8badd0e54c"
dependencies = [
"errno",
"libc",
"thiserror",
]
2021-08-08 02:11:48 -07:00
[[package]]
name = "cargo_toml"
version = "0.9.2"
2021-08-08 02:11:48 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c3596addfb02dcdc06f5252ddda9f3785f9230f5827fb4284645240fa05ad92"
2021-08-08 02:11:48 -07:00
dependencies = [
"serde",
"serde_derive",
"toml",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "cc"
2022-03-16 12:55:15 -07:00
version = "1.0.73"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
2021-01-02 22:40:17 -08:00
dependencies = [
"jobserver",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-01-02 22:40:17 -08:00
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"serde",
2022-07-04 20:58:31 -07:00
"time 0.1.44",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "cipher"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
dependencies = [
"crypto-common",
"inout",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "clap"
2022-03-16 12:55:15 -07:00
version = "2.34.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2021-01-02 22:40:17 -08:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim 0.8.0",
"textwrap 0.11.0",
"unicode-width",
"vec_map",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "clap"
2022-03-16 12:55:15 -07:00
version = "3.1.6"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "d8c93436c21e4698bacadf42917db28b23017027a4deccb35dbe47a7e7840123"
2020-12-31 16:03:34 -08:00
dependencies = [
"atty",
"bitflags",
"clap_derive",
"indexmap",
"lazy_static",
"os_str_bytes",
2021-01-02 22:40:17 -08:00
"strsim 0.10.0",
2020-12-31 16:03:34 -08:00
"termcolor",
2022-03-16 12:55:15 -07:00
"textwrap 0.15.0",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "clap_derive"
2022-03-16 12:55:15 -07:00
version = "3.1.4"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "da95d038ede1a964ce99f49cbe27a7fb538d1da595e4b4f70b8c8f338d17bf16"
2020-12-31 16:03:34 -08:00
dependencies = [
2022-01-27 16:32:58 -08:00
"heck 0.4.0",
2020-12-31 16:03:34 -08:00
"proc-macro-error",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "console"
version = "0.15.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"encode_unicode",
"libc",
"once_cell",
2021-01-02 22:40:17 -08:00
"regex",
"terminal_size",
"unicode-width",
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "console_error_panic_hook"
version = "0.1.7"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
"wasm-bindgen",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "console_log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494"
dependencies = [
"log",
"web-sys",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "const-oid"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "constant_time_eq"
version = "0.1.5"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "core-foundation"
2022-03-16 12:55:15 -07:00
version = "0.9.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2021-01-02 22:40:17 -08:00
dependencies = [
"core-foundation-sys",
"libc",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "core-foundation-sys"
version = "0.8.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2020-12-31 16:03:34 -08:00
2021-01-27 19:58:26 -08:00
[[package]]
2021-08-31 14:52:41 -07:00
name = "cpufeatures"
version = "0.2.1"
2021-01-27 19:58:26 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
dependencies = [
"libc",
]
2021-01-27 19:58:26 -08:00
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "crc32fast"
2022-03-16 12:55:15 -07:00
version = "1.3.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "crossbeam-channel"
2022-03-16 12:55:15 -07:00
version = "0.5.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "fdbfe11fe19ff083c48923cf179540e8cd0535903dc35e178a1fdeeb59aef51f"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
"crossbeam-utils",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "crossbeam-deque"
2021-08-31 14:52:41 -07:00
version = "0.8.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2021-08-31 14:52:41 -07:00
"crossbeam-epoch",
"crossbeam-utils",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "crossbeam-epoch"
2022-03-16 12:55:15 -07:00
version = "0.9.8"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-03-16 12:55:15 -07:00
"autocfg",
"cfg-if",
"crossbeam-utils",
2021-01-02 22:40:17 -08:00
"lazy_static",
2021-08-31 14:52:41 -07:00
"memoffset",
2021-01-02 22:40:17 -08:00
"scopeguard",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "crossbeam-utils"
2022-03-16 12:55:15 -07:00
version = "0.8.8"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"lazy_static",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "crunchy"
version = "0.2.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2020-12-31 16:03:34 -08:00
[[package]]
name = "crypto-common"
version = "0.1.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
2021-01-02 22:40:17 -08:00
dependencies = [
"generic-array",
"typenum",
2021-01-02 22:40:17 -08:00
]
2020-12-31 16:03:34 -08:00
2021-06-10 20:01:25 -07:00
[[package]]
name = "crypto-mac"
version = "0.8.0"
2021-06-10 20:01:25 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
2021-06-10 20:01:25 -07:00
dependencies = [
"generic-array",
2021-08-04 12:29:38 -07:00
"subtle",
2021-06-10 20:01:25 -07:00
]
2021-02-26 01:31:48 -08:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "ctr"
version = "0.8.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
2020-12-31 16:03:34 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"cipher 0.3.0",
2020-12-31 16:03:34 -08:00
]
2021-04-04 00:55:56 -07:00
[[package]]
name = "curve25519-dalek"
2022-07-04 20:58:31 -07:00
version = "3.2.1"
2021-04-04 00:55:56 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "90f9d052967f590a76e62eb387bd0bbb1b000182c3cefe5364db6b7211651bc0"
2021-04-04 00:55:56 -07:00
dependencies = [
"byteorder",
"digest 0.9.0",
"rand_core 0.5.1",
2022-07-04 20:58:31 -07:00
"serde",
2021-08-04 12:29:38 -07:00
"subtle",
2021-04-04 00:55:56 -07:00
"zeroize",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "dashmap"
2021-02-26 01:31:48 -08:00
version = "4.0.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-26 01:31:48 -08:00
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"num_cpus",
2021-02-26 01:31:48 -08:00
"rayon",
2021-01-02 22:40:17 -08:00
]
2020-12-31 16:03:34 -08:00
2021-06-10 20:01:25 -07:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "der"
version = "0.5.1"
2021-06-10 20:01:25 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c"
2021-06-10 20:01:25 -07:00
dependencies = [
2022-07-04 20:58:31 -07:00
"const-oid",
2021-06-10 20:01:25 -07:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "derivation-path"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e5c37193a1db1d8ed868c03ec7b152175f26160a5b740e5e484143877e0adf0"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "dialoguer"
2022-07-04 20:58:31 -07:00
version = "0.10.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d8c8ae48e400addc32a8710c8d62d55cb84249a7d58ac4cd959daecfbaddc545"
2020-12-31 16:03:34 -08:00
dependencies = [
"console",
2021-01-02 22:40:17 -08:00
"tempfile",
"zeroize",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "digest"
version = "0.9.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
2020-12-31 16:03:34 -08:00
dependencies = [
"generic-array",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "digest"
version = "0.10.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2021-01-02 22:40:17 -08:00
dependencies = [
"block-buffer 0.10.2",
"crypto-common",
"subtle",
2021-01-02 22:40:17 -08:00
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "dir-diff"
version = "0.3.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "2860407d7d7e2e004bb2128510ad9e8d669e76fa005ccf567977b5d71b8b4a0b"
dependencies = [
"walkdir",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "dirs"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
dependencies = [
"dirs-sys",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "dirs-next"
version = "2.0.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"dirs-sys-next",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "dirs-sys"
version = "0.3.6"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"libc",
"redox_users",
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "dirs-sys-next"
2021-01-31 06:08:32 -08:00
version = "0.1.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"libc",
"redox_users",
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "dlopen"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71e80ad39f814a9abe68583cd50a2d45c8a67561c3361ab8da240587dda80937"
dependencies = [
"dlopen_derive",
"lazy_static",
"libc",
"winapi",
]
[[package]]
name = "dlopen_derive"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f236d9e1b1fbd81cea0f9cbdc8dcc7e8ebcd80e6659cd7cb2ad5f6c05946c581"
dependencies = [
"libc",
"quote 0.6.13",
"syn 0.15.44",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "ed25519"
2022-03-16 12:55:15 -07:00
version = "1.4.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "eed12bbf7b5312f8da1c2722bc06d8c6b12c2d86a7fb35a194c7f3e6fc2bbe39"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"signature",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "ed25519-dalek"
2021-04-04 00:55:56 -07:00
version = "1.0.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-04 00:55:56 -07:00
checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d"
2020-12-31 16:03:34 -08:00
dependencies = [
"curve25519-dalek",
2021-01-02 22:40:17 -08:00
"ed25519",
"rand 0.7.3",
2021-01-02 22:40:17 -08:00
"serde",
2022-07-04 20:58:31 -07:00
"sha2 0.9.9",
2021-01-02 22:40:17 -08:00
"zeroize",
2020-12-31 16:03:34 -08:00
]
2021-06-10 20:01:25 -07:00
[[package]]
name = "ed25519-dalek-bip32"
2022-07-04 20:58:31 -07:00
version = "0.2.0"
2021-06-10 20:01:25 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "9d2be62a4061b872c8c0873ee4fc6f101ce7b889d039f019c5fa2af471a59908"
2021-06-10 20:01:25 -07:00
dependencies = [
"derivation-path",
"ed25519-dalek",
2022-07-04 20:58:31 -07:00
"hmac 0.12.1",
"sha2 0.10.2",
2021-06-10 20:01:25 -07:00
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "either"
version = "1.6.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding_rs"
2022-03-16 12:55:15 -07:00
version = "0.8.30"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2020-12-31 16:03:34 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "enum-iterator"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6"
dependencies = [
"enum-iterator-derive",
]
[[package]]
name = "enum-iterator-derive"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159"
dependencies = [
"proc-macro2 1.0.40",
"quote 1.0.15",
"syn 1.0.98",
]
[[package]]
name = "enum_dispatch"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eb359f1476bf611266ac1f5355bc14aeca37b299d0ebccc038ee7058891c9cb"
dependencies = [
"once_cell",
"proc-macro2 1.0.40",
"quote 1.0.15",
"syn 1.0.98",
]
[[package]]
name = "enumflags2"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0"
dependencies = [
"enumflags2_derive",
]
[[package]]
name = "enumflags2_derive"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "946ee94e3dbf58fdd324f9ce245c7b238d46a66f00e86a020b71996349e46cce"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "env_logger"
version = "0.9.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"atty",
"humantime",
"log",
"regex",
"termcolor",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2021-06-10 20:01:25 -07:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "event-listener"
version = "2.5.2"
2021-06-10 20:01:25 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
2021-06-10 20:01:25 -07:00
[[package]]
name = "fastrand"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
dependencies = [
"instant",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "feature-probe"
version = "0.1.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "835a3dc7d1ec9e75e2b5fb4ba75396837112d2060b03f7d43bc1897c7f7211da"
[[package]]
name = "field-offset"
2021-06-27 17:09:46 -07:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-27 17:09:46 -07:00
checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
dependencies = [
2021-08-31 14:52:41 -07:00
"memoffset",
"rustc_version 0.3.3",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "filetime"
2021-08-31 14:52:41 -07:00
version = "0.2.15"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"libc",
"redox_syscall",
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "flate2"
version = "1.0.22"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"crc32fast",
"libc",
"miniz_oxide",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "fnv"
version = "1.0.7"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "foreign-types"
version = "0.3.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"foreign-types-shared",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "foreign-types-shared"
version = "0.1.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "form_urlencoded"
2021-03-10 05:30:10 -08:00
version = "1.0.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 05:30:10 -08:00
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"matches",
"percent-encoding",
2020-12-31 16:03:34 -08:00
]
2021-04-04 00:55:56 -07:00
[[package]]
name = "futures"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-04-04 00:55:56 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2021-04-04 00:55:56 -07:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "futures-channel"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"futures-core",
2021-04-04 00:55:56 -07:00
"futures-sink",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "futures-core"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-01-02 22:40:17 -08:00
2021-04-04 00:55:56 -07:00
[[package]]
name = "futures-executor"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-04-04 00:55:56 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2021-04-04 00:55:56 -07:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "futures-io"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-01-02 22:40:17 -08:00
[[package]]
name = "futures-macro"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "futures-sink"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2021-01-02 22:40:17 -08:00
[[package]]
name = "futures-task"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2021-01-02 22:40:17 -08:00
[[package]]
name = "futures-util"
2022-03-16 12:55:15 -07:00
version = "0.3.21"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-04-04 00:55:56 -07:00
"futures-channel",
2021-01-02 22:40:17 -08:00
"futures-core",
"futures-io",
"futures-macro",
2021-04-04 00:55:56 -07:00
"futures-sink",
2021-01-02 22:40:17 -08:00
"futures-task",
"memchr",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2021-01-02 22:40:17 -08:00
"pin-utils",
"slab",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "generic-array"
2022-03-16 12:55:15 -07:00
version = "0.14.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2021-01-02 22:40:17 -08:00
dependencies = [
"serde",
"typenum",
"version_check",
]
[[package]]
name = "gethostname"
2022-03-16 12:55:15 -07:00
version = "0.2.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
2021-10-24 17:42:52 -07:00
"js-sys",
2021-01-02 22:40:17 -08:00
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
2021-10-24 17:42:52 -07:00
"wasm-bindgen",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "getrandom"
2022-03-16 12:55:15 -07:00
version = "0.2.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"libc",
2022-03-16 12:55:15 -07:00
"wasi 0.10.0+wasi-snapshot-preview1",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "h2"
2022-03-16 12:55:15 -07:00
version = "0.3.12"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "62eeb471aa3e3c9197aa4bfeabfe02982f6dc96f750486c0bb0009ac58b26d2b"
2021-01-02 22:40:17 -08:00
dependencies = [
"bytes",
2021-01-02 22:40:17 -08:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"tokio-util",
"tracing",
]
2021-08-31 14:52:41 -07:00
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2022-03-16 12:55:15 -07:00
dependencies = [
"ahash",
2022-03-16 12:55:15 -07:00
]
2021-08-31 14:52:41 -07:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "hashbrown"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3"
2021-01-02 22:40:17 -08:00
[[package]]
name = "heck"
2021-08-31 14:52:41 -07:00
version = "0.3.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2021-01-02 22:40:17 -08:00
dependencies = [
"unicode-segmentation",
]
2022-01-27 16:32:58 -08:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
2021-01-02 22:40:17 -08:00
[[package]]
name = "hermit-abi"
2021-08-31 14:52:41 -07:00
version = "0.1.19"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "histogram"
version = "0.6.9"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "12cb882ccb290b8646e554b157ab0b71e64e8d5bef775cd66b6531e52d302669"
2021-01-02 22:40:17 -08:00
2021-04-04 00:55:56 -07:00
[[package]]
name = "hmac"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840"
dependencies = [
2022-07-04 20:58:31 -07:00
"crypto-mac",
2021-04-04 00:55:56 -07:00
"digest 0.9.0",
]
2021-06-10 20:01:25 -07:00
[[package]]
name = "hmac"
2022-07-04 20:58:31 -07:00
version = "0.12.1"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2021-02-26 01:31:48 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"digest 0.10.3",
2021-02-26 01:31:48 -08:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "hmac-drbg"
2021-08-04 12:29:38 -07:00
version = "0.3.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-04 12:29:38 -07:00
checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-04 12:29:38 -07:00
"digest 0.9.0",
"generic-array",
2021-08-04 12:29:38 -07:00
"hmac 0.8.1",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "http"
2022-03-16 12:55:15 -07:00
version = "0.2.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
2021-01-02 22:40:17 -08:00
dependencies = [
"bytes",
2021-01-02 22:40:17 -08:00
"fnv",
2022-03-16 12:55:15 -07:00
"itoa",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "http-body"
version = "0.4.4"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
2021-01-02 22:40:17 -08:00
dependencies = [
"bytes",
2021-01-02 22:40:17 -08:00
"http",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "httparse"
2022-03-16 12:55:15 -07:00
version = "1.6.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
2021-01-02 22:40:17 -08:00
[[package]]
name = "httpdate"
version = "1.0.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2021-01-02 22:40:17 -08:00
[[package]]
name = "humantime"
2021-01-31 06:08:32 -08:00
version = "2.1.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2021-01-02 22:40:17 -08:00
[[package]]
name = "hyper"
2022-03-16 12:55:15 -07:00
version = "0.14.17"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "043f0e083e9901b6cc658a77d1eb86f4fc650bbb977a4337dd63192826aa85dd"
2021-01-02 22:40:17 -08:00
dependencies = [
"bytes",
2021-01-02 22:40:17 -08:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2022-03-16 12:55:15 -07:00
"itoa",
2021-08-31 14:52:41 -07:00
"pin-project-lite",
"socket2",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.23.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87c48c02e0dc5e3b849a2041db3029fd066650f8f717c07bf8ed78ccb895cac"
2021-01-02 22:40:17 -08:00
dependencies = [
"http",
2021-01-02 22:40:17 -08:00
"hyper",
"rustls",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"tokio-rustls",
]
2021-08-08 02:11:48 -07:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
2021-08-08 02:11:48 -07:00
"hyper",
"native-tls",
2021-08-31 14:52:41 -07:00
"tokio",
2021-08-08 02:11:48 -07:00
"tokio-native-tls",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "idna"
2021-08-31 14:52:41 -07:00
version = "0.2.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
2021-01-02 22:40:17 -08:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "im"
version = "15.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9"
dependencies = [
"bitmaps",
"rand_core 0.6.3",
"rand_xoshiro",
"rayon",
"serde",
"sized-chunks",
"typenum",
"version_check",
]
[[package]]
name = "index_list"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a9d968042a4902e08810946fc7cd5851eb75e80301342305af755ca06cb82ce"
2021-01-02 22:40:17 -08:00
[[package]]
name = "indexmap"
2022-07-04 20:58:31 -07:00
version = "1.9.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2021-01-02 22:40:17 -08:00
dependencies = [
"autocfg",
2022-07-04 20:58:31 -07:00
"hashbrown 0.12.1",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "indicatif"
version = "0.16.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
2021-01-02 22:40:17 -08:00
dependencies = [
"console",
2021-01-02 22:40:17 -08:00
"lazy_static",
"number_prefix",
"regex",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "instant"
version = "0.1.12"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "ipnet"
2022-03-16 12:55:15 -07:00
version = "2.4.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c"
2021-01-02 22:40:17 -08:00
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
"either",
]
[[package]]
2022-03-16 12:55:15 -07:00
name = "itertools"
version = "0.10.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
dependencies = [
"either",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "itoa"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
2021-01-02 22:40:17 -08:00
[[package]]
name = "jobserver"
2021-08-31 14:52:41 -07:00
version = "0.1.24"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
]
[[package]]
name = "js-sys"
2022-03-16 12:55:15 -07:00
version = "0.3.56"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
2021-01-02 22:40:17 -08:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "jsonrpc-core"
2021-08-31 14:52:41 -07:00
version = "18.0.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"futures",
"futures-executor",
"futures-util",
2021-01-02 22:40:17 -08:00
"log",
"serde",
"serde_derive",
"serde_json",
]
[[package]]
name = "keccak"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-03-16 12:55:15 -07:00
version = "0.2.120"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "ad5c14e80759d0939d013e6ca49930e59fc53dd8e5009132f76240c179380c09"
2021-01-02 22:40:17 -08:00
[[package]]
name = "libloading"
version = "0.7.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "libsecp256k1"
version = "0.6.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9d220bc1feda2ac231cb78c3d26f27676b8cf82c96971f7aeef3d0cf2797c73"
2021-01-02 22:40:17 -08:00
dependencies = [
"arrayref",
2021-08-04 12:29:38 -07:00
"base64 0.12.3",
"digest 0.9.0",
2021-01-02 22:40:17 -08:00
"hmac-drbg",
2021-08-04 12:29:38 -07:00
"libsecp256k1-core",
"libsecp256k1-gen-ecmult",
"libsecp256k1-gen-genmult",
"rand 0.7.3",
2021-08-04 12:29:38 -07:00
"serde",
2022-07-04 20:58:31 -07:00
"sha2 0.9.9",
2021-01-02 22:40:17 -08:00
"typenum",
]
2021-08-04 12:29:38 -07:00
[[package]]
name = "libsecp256k1-core"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0f6ab710cec28cef759c5f18671a27dae2a5f952cdaaee1d8e2908cb2478a80"
dependencies = [
"crunchy",
"digest 0.9.0",
"subtle",
]
[[package]]
name = "libsecp256k1-gen-ecmult"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccab96b584d38fac86a83f07e659f0deafd0253dc096dab5a36d53efe653c5c3"
dependencies = [
"libsecp256k1-core",
]
[[package]]
name = "libsecp256k1-gen-genmult"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67abfe149395e3aa1c48a2beb32b068e2334402df8181f818d3aee2b304c4f5d"
dependencies = [
"libsecp256k1-core",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "linked-hash-map"
2021-01-31 06:08:32 -08:00
version = "0.5.4"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3"
2021-01-02 22:40:17 -08:00
[[package]]
name = "lock_api"
2022-03-16 12:55:15 -07:00
version = "0.4.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "88943dd7ef4a2e5a4bfa2753aaab3013e34ce2533d1996fb18ef591e315e2b3b"
2021-01-02 22:40:17 -08:00
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2021-01-31 06:08:32 -08:00
version = "0.4.14"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "lru"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c84e6fe5655adc6ce00787cf7dcaf8dc4f998a0565d23eafc207a8b08ca3349a"
dependencies = [
"hashbrown 0.11.2",
]
[[package]]
name = "lz4"
version = "1.23.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4edcb94251b1c375c459e5abe9fb0168c1c826c3370172684844f8f3f8d1a885"
dependencies = [
"libc",
"lz4-sys",
]
[[package]]
name = "lz4-sys"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7be8908e2ed6f31c02db8a9fa962f03e36c53fbfde437363eae3306b85d7e17"
dependencies = [
"cc",
"libc",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "matches"
2021-08-31 14:52:41 -07:00
version = "0.1.9"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2021-01-02 22:40:17 -08:00
[[package]]
name = "memchr"
2021-08-31 14:52:41 -07:00
version = "2.4.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2021-01-02 22:40:17 -08:00
[[package]]
name = "memmap2"
version = "0.5.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
]
[[package]]
name = "memoffset"
2022-03-16 12:55:15 -07:00
version = "0.6.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-01-02 22:40:17 -08:00
dependencies = [
"autocfg",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "merlin"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d"
dependencies = [
"byteorder",
"keccak",
"rand_core 0.6.3",
"zeroize",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2021-08-08 02:11:48 -07:00
[[package]]
name = "mime_guess"
2022-03-16 12:55:15 -07:00
version = "2.0.4"
2021-08-08 02:11:48 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
2021-08-08 02:11:48 -07:00
dependencies = [
"mime",
"unicase",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "miniz_oxide"
2021-03-10 05:30:10 -08:00
version = "0.4.4"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-10 05:30:10 -08:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2021-01-02 22:40:17 -08:00
dependencies = [
"adler",
"autocfg",
]
[[package]]
name = "mio"
version = "0.7.14"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
"log",
2021-08-31 14:52:41 -07:00
"miow",
2021-02-26 01:31:48 -08:00
"ntapi",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "miow"
2021-08-31 14:52:41 -07:00
version = "0.3.7"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
2021-02-26 01:31:48 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"winapi",
2021-02-26 01:31:48 -08:00
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "modular-bitfield"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "a53d79ba8304ac1c4f9eb3b9d281f21f7be9d4626f72ce7df4ad8fbde4f38a74"
dependencies = [
2022-07-04 20:58:31 -07:00
"modular-bitfield-impl",
"static_assertions",
]
[[package]]
name = "modular-bitfield-impl"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a7d5f7076603ebc68de2dc6a650ec331a062a13abaa346975be747bbfa4b789"
dependencies = [
"proc-macro2 1.0.40",
"quote 1.0.15",
"syn 1.0.98",
]
[[package]]
name = "mpl-token-metadata"
version = "1.3.4"
2022-07-04 20:58:31 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "029a329d7a89f7a3caf0b91bec307531f4b6c9cca34aa775454845fbbd05ac57"
2022-07-04 20:58:31 -07:00
dependencies = [
"arrayref",
"borsh",
"mpl-token-vault",
"num-derive",
"num-traits",
"shank",
"solana-program",
"spl-associated-token-account",
"spl-token",
"thiserror",
]
[[package]]
name = "mpl-token-vault"
2022-07-04 20:58:31 -07:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "7ade4ef15bc06a6033076c4ff28cba9b42521df5ec61211d6f419415ace2746a"
dependencies = [
"borsh",
"num-derive",
"num-traits",
"solana-program",
"spl-token",
"thiserror",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "native-tls"
2021-08-31 14:52:41 -07:00
version = "0.2.8"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
2021-01-02 22:40:17 -08:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
[[package]]
name = "nix"
version = "0.23.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
2021-01-02 22:40:17 -08:00
dependencies = [
"bitflags",
"cc",
"cfg-if",
2021-01-02 22:40:17 -08:00
"libc",
2022-03-16 12:55:15 -07:00
"memoffset",
2021-01-02 22:40:17 -08:00
]
2021-02-26 01:31:48 -08:00
[[package]]
name = "ntapi"
2022-03-16 12:55:15 -07:00
version = "0.3.7"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
2021-02-26 01:31:48 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"winapi",
2021-02-26 01:31:48 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "num"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-complex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
dependencies = [
"autocfg",
"num-traits",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "num-derive"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2022-03-16 12:55:15 -07:00
version = "1.13.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-01-02 22:40:17 -08:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_enum"
2022-03-16 12:55:15 -07:00
version = "0.5.7"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
2021-01-02 22:40:17 -08:00
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2022-03-16 12:55:15 -07:00
version = "0.5.7"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-03-16 12:55:15 -07:00
"proc-macro-crate 1.1.3",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
2022-07-04 20:58:31 -07:00
name = "num_threads"
version = "0.1.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
2021-01-02 22:40:17 -08:00
[[package]]
2022-07-04 20:58:31 -07:00
name = "number_prefix"
version = "0.4.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2021-01-02 22:40:17 -08:00
[[package]]
name = "once_cell"
2022-03-16 12:55:15 -07:00
version = "1.10.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
2021-01-02 22:40:17 -08:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "openssl"
version = "0.10.38"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
2021-01-02 22:40:17 -08:00
dependencies = [
"bitflags",
"cfg-if",
2021-01-02 22:40:17 -08:00
"foreign-types",
"libc",
2021-08-31 14:52:41 -07:00
"once_cell",
2021-01-02 22:40:17 -08:00
"openssl-sys",
]
[[package]]
name = "openssl-probe"
2022-03-16 12:55:15 -07:00
version = "0.1.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2021-01-02 22:40:17 -08:00
[[package]]
name = "openssl-sys"
2022-03-16 12:55:15 -07:00
version = "0.9.72"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
2021-01-02 22:40:17 -08:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "os_str_bytes"
2022-01-27 16:32:58 -08:00
version = "6.0.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-27 16:32:58 -08:00
checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64"
dependencies = [
"memchr",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "ouroboros"
2022-07-04 20:58:31 -07:00
version = "0.14.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "71643f290d126e18ac2598876d01e1d57aed164afc78fdb6e2a0c6589a1f6662"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-04 12:29:38 -07:00
"aliasable",
2021-01-02 22:40:17 -08:00
"ouroboros_macro",
"stable_deref_trait",
]
[[package]]
name = "ouroboros_macro"
2022-07-04 20:58:31 -07:00
version = "0.14.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "ed9a247206016d424fe8497bc611e510887af5c261fbbf977877c4bb55ca4d82"
2021-01-02 22:40:17 -08:00
dependencies = [
"Inflector",
2021-08-04 12:29:38 -07:00
"proc-macro-error",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "parking_lot"
version = "0.11.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
2021-01-02 22:40:17 -08:00
dependencies = [
"instant",
"lock_api",
2022-07-04 20:58:31 -07:00
"parking_lot_core 0.8.5",
]
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core 0.9.3",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "parking_lot_core"
version = "0.8.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
"instant",
2021-01-02 22:40:17 -08:00
"libc",
"redox_syscall",
2021-08-31 14:52:41 -07:00
"smallvec",
"winapi",
2021-01-02 22:40:17 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "parking_lot_core"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
2021-08-08 02:11:48 -07:00
[[package]]
name = "pathdiff"
version = "0.2.1"
2021-08-08 02:11:48 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2021-08-08 02:11:48 -07:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "pbkdf2"
2021-04-04 00:55:56 -07:00
version = "0.4.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-04 00:55:56 -07:00
checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"crypto-mac",
2021-01-02 22:40:17 -08:00
]
2021-02-26 01:31:48 -08:00
[[package]]
name = "pbkdf2"
2022-07-04 20:58:31 -07:00
version = "0.10.1"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
2021-02-26 01:31:48 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"digest 0.10.3",
]
[[package]]
name = "pem"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947"
dependencies = [
"base64 0.13.0",
2021-02-26 01:31:48 -08:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2022-07-04 20:58:31 -07:00
[[package]]
name = "percentage"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fd23b938276f14057220b707937bcb42fa76dda7560e57a2da30cb52d557937"
dependencies = [
"num",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pin-project-lite"
2022-03-16 12:55:15 -07:00
version = "0.2.8"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2021-01-02 22:40:17 -08:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2022-07-04 20:58:31 -07:00
[[package]]
name = "pkcs8"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0"
dependencies = [
"der",
"spki",
"zeroize",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "pkg-config"
2022-03-16 12:55:15 -07:00
version = "0.3.24"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
2021-01-02 22:40:17 -08:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "polyval"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "portpicker"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be97d76faf1bfab666e1375477b23fde79eccf0276e9b63b92a39d676a889ba9"
dependencies = [
"rand 0.8.5",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "ppv-lite86"
2022-03-16 12:55:15 -07:00
version = "0.2.16"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-01-02 22:40:17 -08:00
[[package]]
name = "proc-macro-crate"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
dependencies = [
"toml",
]
2021-08-31 14:52:41 -07:00
[[package]]
name = "proc-macro-crate"
2022-03-16 12:55:15 -07:00
version = "1.1.3"
2021-08-31 14:52:41 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
2021-08-31 14:52:41 -07:00
dependencies = [
"thiserror",
"toml",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2021-01-02 22:40:17 -08:00
"version_check",
]
[[package]]
name = "proc-macro2"
version = "0.4.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
dependencies = [
"unicode-xid 0.1.0",
]
[[package]]
name = "proc-macro2"
2022-07-04 20:58:31 -07:00
version = "1.0.40"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"unicode-ident",
2021-01-02 22:40:17 -08:00
]
2021-06-27 13:17:05 -07:00
[[package]]
name = "proc-macro2-diagnostics"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bf29726d67464d49fa6224a1d07936a8c08bb3fba727c7493f6cf1616fdaada"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-06-27 13:17:05 -07:00
"version_check",
"yansi",
]
2021-06-10 20:01:25 -07:00
[[package]]
name = "qstring"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e"
dependencies = [
"percent-encoding",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "quinn"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7542006acd6e057ff632307d219954c44048f818898da03113d6c0086bfddd9"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"fxhash",
"quinn-proto",
"quinn-udp",
"rustls",
"thiserror",
"tokio",
"tracing",
"webpki",
]
[[package]]
name = "quinn-proto"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a13a5c0a674c1ce7150c9df7bc4a1e46c2fbbe7c710f56c0dc78b1a810e779e"
dependencies = [
"bytes",
"fxhash",
"rand 0.8.5",
"ring",
"rustls",
"rustls-native-certs",
"rustls-pemfile 0.2.1",
"slab",
"thiserror",
"tinyvec",
"tracing",
"webpki",
]
[[package]]
name = "quinn-udp"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3149f7237331015f1a6adf065c397d1be71e032fcf110ba41da52e7926b882f"
dependencies = [
"futures-util",
"libc",
"quinn-proto",
"socket2",
"tokio",
"tracing",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "quote"
version = "0.6.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
dependencies = [
"proc-macro2 0.4.30",
]
[[package]]
name = "quote"
2022-03-16 12:55:15 -07:00
version = "1.0.15"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
2021-01-31 06:08:32 -08:00
"rand_core 0.5.1",
"rand_hc",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.3",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
2021-01-31 06:08:32 -08:00
"rand_core 0.5.1",
]
[[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 0.6.3",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
2021-01-31 06:08:32 -08:00
[[package]]
name = "rand_core"
2021-08-31 14:52:41 -07:00
version = "0.6.3"
2021-01-31 06:08:32 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom 0.2.5",
]
2021-01-31 06:08:32 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
2021-01-31 06:08:32 -08:00
"rand_core 0.5.1",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "rand_xoshiro"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
dependencies = [
"rand_core 0.6.3",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "rayon"
2021-08-31 14:52:41 -07:00
version = "1.5.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
2021-01-02 22:40:17 -08:00
dependencies = [
"autocfg",
2021-08-31 14:52:41 -07:00
"crossbeam-deque",
2021-01-02 22:40:17 -08:00
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2021-08-31 14:52:41 -07:00
version = "1.9.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
2021-01-02 22:40:17 -08:00
dependencies = [
"crossbeam-channel",
2021-08-31 14:52:41 -07:00
"crossbeam-deque",
"crossbeam-utils",
2021-01-02 22:40:17 -08:00
"lazy_static",
"num_cpus",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "rcgen"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7fa2d386df8533b02184941c76ae2e0d0c1d053f5d43339169d80f21275fc5e"
dependencies = [
"pem",
"ring",
"time 0.3.11",
"yasna",
]
2021-01-31 06:08:32 -08:00
[[package]]
name = "redox_syscall"
2022-03-16 12:55:15 -07:00
version = "0.2.11"
2021-01-31 06:08:32 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
2021-01-31 06:08:32 -08:00
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
2022-03-16 12:55:15 -07:00
"getrandom 0.2.5",
"redox_syscall",
2021-01-31 06:08:32 -08:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "regex"
2022-03-16 12:55:15 -07:00
version = "1.5.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
2021-01-02 22:40:17 -08:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-08-31 14:52:41 -07:00
version = "0.6.25"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
2021-01-02 22:40:17 -08:00
[[package]]
name = "remove_dir_all"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc5b3ce5d5ea144bb04ebd093a9e14e9765bcfec866aecda9b6dec43b3d1e24"
dependencies = [
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "reqwest"
2022-03-16 12:55:15 -07:00
version = "0.11.10"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"async-compression",
2021-01-02 22:40:17 -08:00
"base64 0.13.0",
"bytes",
2021-01-02 22:40:17 -08:00
"encoding_rs",
"futures-core",
"futures-util",
"h2",
2021-01-02 22:40:17 -08:00
"http",
"http-body",
"hyper",
"hyper-rustls",
2021-08-08 02:11:48 -07:00
"hyper-tls",
2021-01-02 22:40:17 -08:00
"ipnet",
"js-sys",
"lazy_static",
"log",
"mime",
2021-08-08 02:11:48 -07:00
"mime_guess",
"native-tls",
2021-01-02 22:40:17 -08:00
"percent-encoding",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2021-01-02 22:40:17 -08:00
"rustls",
2022-07-04 20:58:31 -07:00
"rustls-pemfile 0.3.0",
2021-01-02 22:40:17 -08:00
"serde",
"serde_json",
"serde_urlencoded",
2021-08-31 14:52:41 -07:00
"tokio",
2021-08-08 02:11:48 -07:00
"tokio-native-tls",
2021-01-02 22:40:17 -08:00
"tokio-rustls",
2022-07-04 20:58:31 -07:00
"tokio-util",
2021-01-02 22:40:17 -08:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg",
]
[[package]]
name = "ring"
2021-06-10 20:01:25 -07:00
version = "0.16.20"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-10 20:01:25 -07:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2021-01-02 22:40:17 -08:00
dependencies = [
"cc",
"libc",
2021-06-10 20:01:25 -07:00
"once_cell",
2021-01-02 22:40:17 -08:00
"spin",
"untrusted",
"web-sys",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "rpassword"
2022-07-04 20:58:31 -07:00
version = "6.0.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "2bf099a1888612545b683d2661a1940089f6c2e5a8e38979b2159da876bfd956"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
2022-07-04 20:58:31 -07:00
"serde",
"serde_json",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
"semver 0.11.0",
]
2022-03-16 12:55:15 -07:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver 1.0.6",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "rustls"
2022-03-16 12:55:15 -07:00
version = "0.20.4"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4fbfeb8d0ddb84706bc597a5574ab8912817c52a397f819e5b614e2265206921"
2021-01-02 22:40:17 -08:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "rustls-native-certs"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
dependencies = [
"openssl-probe",
"rustls-pemfile 1.0.0",
"schannel",
"security-framework",
]
[[package]]
name = "rustls-pemfile"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
dependencies = [
"base64 0.13.0",
]
[[package]]
name = "rustls-pemfile"
2022-03-16 12:55:15 -07:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
dependencies = [
"base64 0.13.0",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "rustls-pemfile"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
dependencies = [
"base64 0.13.0",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "rustversion"
2022-03-16 12:55:15 -07:00
version = "1.0.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f"
2021-01-02 22:40:17 -08:00
[[package]]
name = "ryu"
2022-03-16 12:55:15 -07:00
version = "1.0.9"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
2021-01-02 22:40:17 -08:00
[[package]]
name = "safe-transmute"
2021-08-31 14:52:41 -07:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "98a01dab6acf992653be49205bdd549f32f17cb2803e8eacf1560bf97259aae8"
2021-01-02 22:40:17 -08:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "schannel"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
dependencies = [
"lazy_static",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[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"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
2021-01-02 22:40:17 -08:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "security-framework"
2022-03-16 12:55:15 -07:00
version = "2.3.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "23a2ac85147a3a11d77ecf1bc7166ec0b92febfa4461c37944e180f319ece467"
2021-01-02 22:40:17 -08:00
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2022-03-16 12:55:15 -07:00
version = "2.6.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
2021-01-02 22:40:17 -08:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
"semver-parser",
2021-01-02 22:40:17 -08:00
]
2021-10-25 09:47:59 -07:00
[[package]]
name = "semver"
2022-03-16 12:55:15 -07:00
version = "1.0.6"
2021-10-25 09:47:59 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "a4a3381e03edd24287172047536f20cabde766e2cd3e65e6b00fb3af51c4f38d"
2021-10-25 09:47:59 -07:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "semver-parser"
2021-01-31 06:08:32 -08:00
version = "0.10.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
2021-01-02 22:40:17 -08:00
dependencies = [
"pest",
]
[[package]]
name = "serde"
version = "1.0.136"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
2021-01-02 22:40:17 -08:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_bytes"
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
dependencies = [
"serde",
]
[[package]]
name = "serde_derive"
version = "1.0.136"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "serde_json"
2022-03-16 12:55:15 -07:00
version = "1.0.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-03-16 12:55:15 -07:00
"itoa",
2021-01-02 22:40:17 -08:00
"ryu",
"serde",
]
[[package]]
name = "serde_urlencoded"
2022-03-16 12:55:15 -07:00
version = "0.7.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-01-02 22:40:17 -08:00
dependencies = [
"form_urlencoded",
2022-03-16 12:55:15 -07:00
"itoa",
2021-01-02 22:40:17 -08:00
"ryu",
"serde",
]
[[package]]
name = "serde_yaml"
version = "0.8.23"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a521f2940385c165a24ee286aa8599633d162077a54bdcae2a6fd5a7bfa7a0"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"indexmap",
"ryu",
2021-01-02 22:40:17 -08:00
"serde",
"yaml-rust",
]
[[package]]
name = "serum_dex"
2021-08-04 12:29:38 -07:00
version = "0.4.0"
2021-09-16 17:19:15 -07:00
source = "git+https://github.com/project-serum/serum-dex?rev=1be91f2#1be91f2863d8ecede32daaae7e768034e24bbc79"
dependencies = [
"arrayref",
"bincode",
"bytemuck",
"byteorder",
"enumflags2",
"field-offset",
2022-03-16 12:55:15 -07:00
"itertools 0.9.0",
"num-traits",
"num_enum",
"safe-transmute",
"serde",
"solana-program",
"spl-token",
"static_assertions",
"thiserror",
"without-alloc",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "sha-1"
2022-07-04 20:58:31 -07:00
version = "0.10.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "028f48d513f9678cda28f6e4064755b3fbb2af6acd672f2c209b62323f7aea0f"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
"cpufeatures",
2022-07-04 20:58:31 -07:00
"digest 0.10.3",
2021-01-02 22:40:17 -08:00
]
2021-01-27 19:58:26 -08:00
[[package]]
name = "sha2"
2022-03-16 12:55:15 -07:00
version = "0.9.9"
2021-01-27 19:58:26 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2021-01-27 19:58:26 -08:00
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
2021-08-31 14:52:41 -07:00
"cpufeatures",
2021-01-27 19:58:26 -08:00
"digest 0.9.0",
"opaque-debug",
2021-01-27 19:58:26 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "sha2"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
dependencies = [
"cfg-if",
"cpufeatures",
"digest 0.10.3",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "sha3"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809"
dependencies = [
"block-buffer 0.9.0",
"digest 0.9.0",
"keccak",
"opaque-debug",
2021-01-02 22:40:17 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "sha3"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "881bf8156c87b6301fc5ca6b27f11eeb2761224c7081e69b409d5a1951a70c86"
dependencies = [
"digest 0.10.3",
"keccak",
]
[[package]]
name = "shank"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85a6c6cad96abd1fd950d1df186ec02e786566161f03adadbb7cf157ae9a82d8"
dependencies = [
"shank_macro",
]
[[package]]
name = "shank_macro"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0b3bf722b43cea02627c7fd89925f5861f7aa27604c1852720f8eee1a73523d"
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
"quote 1.0.15",
"shank_macro_impl",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
[[package]]
name = "shank_macro_impl"
version = "0.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90a37f762b0529d64a9e3401ac3829e132f58fa9bc50b1fd6ad7b5a1a414a228"
dependencies = [
"anyhow",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
"quote 1.0.15",
"serde",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "shellexpand"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829"
dependencies = [
"dirs-next",
]
2021-02-26 01:31:48 -08:00
[[package]]
name = "signal-hook-registry"
2021-08-31 14:52:41 -07:00
version = "1.4.0"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
2021-02-26 01:31:48 -08:00
dependencies = [
"libc",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "signature"
2022-03-16 12:55:15 -07:00
version = "1.5.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "f054c6c1a6e95179d6f23ed974060dcefb2d9388bb7256900badad682c499de4"
2021-01-02 22:40:17 -08:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "sized-chunks"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
dependencies = [
"bitmaps",
"typenum",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "slab"
version = "0.4.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2021-01-02 22:40:17 -08:00
[[package]]
name = "smallvec"
2022-03-16 12:55:15 -07:00
version = "1.8.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
2021-01-02 22:40:17 -08:00
2021-04-04 00:55:56 -07:00
[[package]]
name = "socket2"
2022-03-16 12:55:15 -07:00
version = "0.4.4"
2021-04-04 00:55:56 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
2021-04-04 00:55:56 -07:00
dependencies = [
"libc",
2021-08-31 14:52:41 -07:00
"winapi",
2021-04-04 00:55:56 -07:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-account-decoder"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "9e4d449c99aa412aa0ad73df67d5cb2e61f91a2127231e57e81b79cb5e6e6718"
2021-01-02 22:40:17 -08:00
dependencies = [
"Inflector",
2022-07-04 20:58:31 -07:00
"base64 0.13.0",
2021-01-02 22:40:17 -08:00
"bincode",
"bs58 0.4.0",
2021-01-02 22:40:17 -08:00
"bv",
"lazy_static",
"serde",
"serde_derive",
"serde_json",
"solana-config-program",
"solana-sdk",
"solana-vote-program",
"spl-token",
2022-07-04 20:58:31 -07:00
"spl-token-2022",
2021-01-02 22:40:17 -08:00
"thiserror",
"zstd",
]
[[package]]
name = "solana-address-lookup-table-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "0f7d39516d390dbf22a7d6aa42bdac07fecc9c0b9c1501cd845c7230fa98aa2e"
dependencies = [
"bincode",
"bytemuck",
"log",
"num-derive",
"num-traits",
"rustc_version 0.4.0",
"serde",
"solana-frozen-abi",
"solana-frozen-abi-macro",
2022-07-04 20:58:31 -07:00
"solana-program",
"solana-program-runtime",
"solana-sdk",
"thiserror",
]
[[package]]
name = "solana-bucket-map"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "eef123b23f8c59d3bef0b8d1eb9dc936b98a3a846b0d3b516e6f5a202c6b42a5"
dependencies = [
"log",
"memmap2",
2022-07-04 20:58:31 -07:00
"modular-bitfield",
"rand 0.7.3",
"solana-measure",
"solana-sdk",
"tempfile",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-clap-utils"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "6645eb1fb086062c3d1c0b63865a04ab91106e49d3b55e58c88282335324311c"
2021-01-02 22:40:17 -08:00
dependencies = [
"chrono",
2022-03-16 12:55:15 -07:00
"clap 2.34.0",
2021-01-02 22:40:17 -08:00
"rpassword",
"solana-perf",
2021-01-02 22:40:17 -08:00
"solana-remote-wallet",
"solana-sdk",
"thiserror",
"tiny-bip39",
2021-04-18 12:13:07 -07:00
"uriparse",
"url",
]
[[package]]
name = "solana-cli-config"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-04-18 12:13:07 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "055a08171cf7c30fde53d1b5c44623c1453ebb54145bf7a193fedc24503035bb"
2021-04-18 12:13:07 -07:00
dependencies = [
"dirs-next",
"lazy_static",
"serde",
"serde_derive",
"serde_yaml",
2022-07-04 20:58:31 -07:00
"solana-clap-utils",
"solana-sdk",
2021-01-02 22:40:17 -08:00
"url",
]
[[package]]
name = "solana-client"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "ad2a11b9182a7e95c1fcd686a2adbff4c19ee7da2fdf5e8f4807ce00814401f9"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"async-mutex",
"async-trait",
2021-01-02 22:40:17 -08:00
"base64 0.13.0",
"bincode",
"bs58 0.4.0",
2022-07-04 20:58:31 -07:00
"bytes",
2022-03-16 12:55:15 -07:00
"clap 2.34.0",
2022-07-04 20:58:31 -07:00
"crossbeam-channel",
"enum_dispatch",
"futures",
"futures-util",
"indexmap",
2021-01-02 22:40:17 -08:00
"indicatif",
2022-07-04 20:58:31 -07:00
"itertools 0.10.3",
2021-01-02 22:40:17 -08:00
"jsonrpc-core",
2022-07-04 20:58:31 -07:00
"lazy_static",
2021-01-02 22:40:17 -08:00
"log",
2022-07-04 20:58:31 -07:00
"lru",
"quinn",
"quinn-proto",
"rand 0.7.3",
"rand_chacha 0.2.2",
2021-01-02 22:40:17 -08:00
"rayon",
"reqwest",
2022-07-04 20:58:31 -07:00
"rustls",
"semver 1.0.6",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"serde_json",
"solana-account-decoder",
"solana-clap-utils",
2021-04-18 12:13:07 -07:00
"solana-faucet",
"solana-measure",
2022-07-04 20:58:31 -07:00
"solana-metrics",
2021-01-02 22:40:17 -08:00
"solana-net-utils",
"solana-sdk",
2022-07-04 20:58:31 -07:00
"solana-streamer",
2021-01-02 22:40:17 -08:00
"solana-transaction-status",
"solana-version",
"solana-vote-program",
2022-07-04 20:58:31 -07:00
"spl-token-2022",
2021-01-02 22:40:17 -08:00
"thiserror",
2021-08-31 14:52:41 -07:00
"tokio",
2022-07-04 20:58:31 -07:00
"tokio-stream",
"tokio-tungstenite",
2021-01-02 22:40:17 -08:00
"tungstenite",
"url",
]
2021-10-24 17:42:52 -07:00
[[package]]
name = "solana-compute-budget-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-10-24 17:42:52 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "355efb42d58bbc3b1af7f5dd244c9c370c318e35876cea31a4354521d38383d9"
2021-10-24 17:42:52 -07:00
dependencies = [
"solana-program-runtime",
2021-10-24 17:42:52 -07:00
"solana-sdk",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-config-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "1e456899b60ccc04cba02a1b2a0bb00cc92a1e60b04ed7d16cbfb2cb1169533c"
2021-01-02 22:40:17 -08:00
dependencies = [
"bincode",
"chrono",
"serde",
"serde_derive",
"solana-program-runtime",
"solana-sdk",
]
2021-04-18 12:13:07 -07:00
[[package]]
name = "solana-faucet"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-04-18 12:13:07 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "50a72947370668638d3193227d020e8204b291f72dfd72caf276eecb2f7a9591"
2021-04-18 12:13:07 -07:00
dependencies = [
"bincode",
"byteorder",
2022-03-16 12:55:15 -07:00
"clap 2.34.0",
2022-07-04 20:58:31 -07:00
"crossbeam-channel",
2021-04-18 12:13:07 -07:00
"log",
"serde",
"serde_derive",
"solana-clap-utils",
"solana-cli-config",
"solana-logger",
"solana-metrics",
"solana-sdk",
"solana-version",
"spl-memo",
"thiserror",
2021-08-31 14:52:41 -07:00
"tokio",
2021-04-18 12:13:07 -07:00
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-frozen-abi"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "4b4575674b138156108ea7ee855633b28b72d8cd3890245e0847bfdade3797dc"
2021-01-02 22:40:17 -08:00
dependencies = [
"bs58 0.4.0",
2021-01-02 22:40:17 -08:00
"bv",
"generic-array",
2022-07-04 20:58:31 -07:00
"im",
"lazy_static",
2021-01-02 22:40:17 -08:00
"log",
"memmap2",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"serde",
2022-07-04 20:58:31 -07:00
"serde_bytes",
2021-01-02 22:40:17 -08:00
"serde_derive",
2022-07-04 20:58:31 -07:00
"sha2 0.10.2",
2021-01-02 22:40:17 -08:00
"solana-frozen-abi-macro",
"thiserror",
]
[[package]]
name = "solana-frozen-abi-macro"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "5ec433ed9f8e7dd62edb6ebe13be01a5e0ec04734305836906709339428c7eaf"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
"rustc_version 0.4.0",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "solana-logger"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "248781d011bdad67c36e4dcd5f83d095b8fd865dbccb5c31a0c01b2a8710269f"
2021-01-02 22:40:17 -08:00
dependencies = [
"env_logger",
"lazy_static",
"log",
]
[[package]]
name = "solana-measure"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "cc22eb95a690580f3a4af2ec170191365d0f8776e9c75fe731be9e5c76b7047e"
2021-01-02 22:40:17 -08:00
dependencies = [
"log",
"solana-sdk",
]
[[package]]
name = "solana-metrics"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "e95f40388091b7abb5cfe7f25910443cf1ce4e60603a29c7e8539036af6b3f9c"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"crossbeam-channel",
2021-01-02 22:40:17 -08:00
"gethostname",
"lazy_static",
"log",
"reqwest",
"solana-sdk",
]
[[package]]
name = "solana-net-utils"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "5d94eaf325096b4b8b14b206b510759e65426f9b6b602f62c3cacc41bceaa823"
2021-01-02 22:40:17 -08:00
dependencies = [
"bincode",
2022-03-16 12:55:15 -07:00
"clap 2.34.0",
2022-07-04 20:58:31 -07:00
"crossbeam-channel",
2021-01-02 22:40:17 -08:00
"log",
"nix",
"rand 0.7.3",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"socket2",
2021-01-02 22:40:17 -08:00
"solana-logger",
"solana-sdk",
2021-01-02 22:40:17 -08:00
"solana-version",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"url",
]
[[package]]
name = "solana-perf"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "562e0219210de30e3b08e0d93ea8b77c875683aac1ecddc31c7bc17608bfff42"
dependencies = [
"ahash",
"bincode",
"bv",
"caps",
"curve25519-dalek",
"dlopen",
"dlopen_derive",
"fnv",
"lazy_static",
"libc",
"log",
"nix",
"rand 0.7.3",
"rayon",
"serde",
"solana-metrics",
"solana-rayon-threadlimit",
"solana-sdk",
"solana-vote-program",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d326eeba5a7ddce915ae3aec9eed8ff017f68baf6149f5b075b25e6834c16eae"
2021-01-02 22:40:17 -08:00
dependencies = [
"base64 0.13.0",
2021-01-02 22:40:17 -08:00
"bincode",
"bitflags",
2021-04-18 12:13:07 -07:00
"blake3",
2021-02-26 01:31:48 -08:00
"borsh",
"borsh-derive",
"bs58 0.4.0",
2021-01-02 22:40:17 -08:00
"bv",
"bytemuck",
"console_error_panic_hook",
"console_log",
"curve25519-dalek",
"getrandom 0.1.16",
"itertools 0.10.3",
"js-sys",
2021-01-02 22:40:17 -08:00
"lazy_static",
2021-08-04 12:29:38 -07:00
"libsecp256k1",
2021-01-02 22:40:17 -08:00
"log",
"num-derive",
"num-traits",
2022-07-04 20:58:31 -07:00
"parking_lot 0.12.1",
"rand 0.7.3",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"rustversion",
"serde",
"serde_bytes",
"serde_derive",
2022-07-04 20:58:31 -07:00
"sha2 0.10.2",
"sha3 0.10.1",
2021-01-02 22:40:17 -08:00
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-sdk-macro",
"thiserror",
"wasm-bindgen",
]
[[package]]
name = "solana-program-runtime"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "1886fa2f172b4812e235e72751bbb83bd661b686cadd3321c1d04c156d8fe392"
dependencies = [
"base64 0.13.0",
"bincode",
2022-07-04 20:58:31 -07:00
"enum-iterator",
"itertools 0.10.3",
"libc",
"libloading",
"log",
"num-derive",
"num-traits",
"rustc_version 0.4.0",
"serde",
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-measure",
"solana-sdk",
"thiserror",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "solana-rayon-threadlimit"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "be2f2a1b6b18d9311064cbf92fea851fc0c9475ec7ff43b13993cb6afc38e1db"
2021-01-02 22:40:17 -08:00
dependencies = [
"lazy_static",
"num_cpus",
]
[[package]]
name = "solana-remote-wallet"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "9192ad1466c72777d14b779b2361c89576384964eaa9897fde5d817fca5ca07f"
2021-01-02 22:40:17 -08:00
dependencies = [
"console",
"dialoguer",
2021-01-02 22:40:17 -08:00
"log",
"num-derive",
"num-traits",
2022-07-04 20:58:31 -07:00
"parking_lot 0.12.1",
2021-06-10 20:01:25 -07:00
"qstring",
"semver 1.0.6",
2021-01-02 22:40:17 -08:00
"solana-sdk",
"thiserror",
2021-06-10 20:01:25 -07:00
"uriparse",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "solana-runtime"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "c117e3d4bf099e9f2e38862a9dc29f5e8f7192fe8d4cc7c314ccc1e1514ed7b3"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-04-18 12:13:07 -07:00
"arrayref",
2021-01-02 22:40:17 -08:00
"bincode",
"blake3",
"bv",
"bytemuck",
2021-01-02 22:40:17 -08:00
"byteorder",
"bzip2",
"crossbeam-channel",
2021-01-02 22:40:17 -08:00
"dashmap",
"dir-diff",
"flate2",
"fnv",
2022-07-04 20:58:31 -07:00
"im",
"index_list",
2022-03-16 12:55:15 -07:00
"itertools 0.10.3",
2021-01-02 22:40:17 -08:00
"lazy_static",
"log",
2022-07-04 20:58:31 -07:00
"lz4",
2021-01-02 22:40:17 -08:00
"memmap2",
"num-derive",
"num-traits",
"num_cpus",
"ouroboros",
"rand 0.7.3",
2021-01-02 22:40:17 -08:00
"rayon",
"regex",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"solana-address-lookup-table-program",
"solana-bucket-map",
2021-10-24 17:42:52 -07:00
"solana-compute-budget-program",
2021-01-02 22:40:17 -08:00
"solana-config-program",
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-measure",
"solana-metrics",
"solana-program-runtime",
2021-01-02 22:40:17 -08:00
"solana-rayon-threadlimit",
"solana-sdk",
"solana-stake-program",
"solana-vote-program",
2022-07-04 20:58:31 -07:00
"solana-zk-token-proof-program",
"solana-zk-token-sdk 1.10.29",
"strum",
"strum_macros",
2021-01-02 22:40:17 -08:00
"symlink",
"tar",
"tempfile",
"thiserror",
"zstd",
]
[[package]]
name = "solana-sdk"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "815e81b6aac0cbd511e4ac9e425dc19dfd5705fcf7eaaa619f99a56feac81c71"
2021-01-02 22:40:17 -08:00
dependencies = [
"assert_matches",
"base64 0.13.0",
2021-01-02 22:40:17 -08:00
"bincode",
"bitflags",
2021-10-24 17:42:52 -07:00
"borsh",
"bs58 0.4.0",
"bytemuck",
2021-01-02 22:40:17 -08:00
"byteorder",
"chrono",
2021-06-10 20:01:25 -07:00
"derivation-path",
2022-07-04 20:58:31 -07:00
"digest 0.10.3",
2021-01-02 22:40:17 -08:00
"ed25519-dalek",
2021-06-10 20:01:25 -07:00
"ed25519-dalek-bip32",
"generic-array",
2022-07-04 20:58:31 -07:00
"hmac 0.12.1",
"itertools 0.10.3",
"js-sys",
2021-01-02 22:40:17 -08:00
"lazy_static",
"libsecp256k1",
"log",
"memmap2",
"num-derive",
"num-traits",
2022-07-04 20:58:31 -07:00
"pbkdf2 0.10.1",
2021-06-10 20:01:25 -07:00
"qstring",
"rand 0.7.3",
"rand_chacha 0.2.2",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"rustversion",
"serde",
"serde_bytes",
"serde_derive",
"serde_json",
2022-07-04 20:58:31 -07:00
"sha2 0.10.2",
"sha3 0.10.1",
2021-01-02 22:40:17 -08:00
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-logger",
"solana-program",
"solana-sdk-macro",
"thiserror",
2021-06-10 20:01:25 -07:00
"uriparse",
"wasm-bindgen",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "solana-sdk-macro"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d8d94af92e7bca7d55a2e21b55a882545bd9709e4056de4a97b1e1fdc8687ccd"
2021-01-02 22:40:17 -08:00
dependencies = [
"bs58 0.4.0",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2021-01-02 22:40:17 -08:00
"rustversion",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "solana-stake-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "aeebdde9e1d1fcddbe302ee36e48505d766b979df27c05181553a7022adc412a"
2021-01-02 22:40:17 -08:00
dependencies = [
"bincode",
"log",
"num-derive",
"num-traits",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"solana-config-program",
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-metrics",
"solana-program-runtime",
2021-01-02 22:40:17 -08:00
"solana-sdk",
"solana-vote-program",
"thiserror",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "solana-streamer"
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3fc65fde637d4db546f16c15e3efa0d9fb06d0b8ddd2861371e5352b2249306"
dependencies = [
"crossbeam-channel",
"futures-util",
"histogram",
"itertools 0.10.3",
"libc",
"log",
"nix",
"pem",
"percentage",
"pkcs8",
"quinn",
"rand 0.7.3",
"rcgen",
"rustls",
"solana-metrics",
"solana-perf",
"solana-sdk",
"thiserror",
"tokio",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "solana-transaction-status"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d3157353232170f2b0b557ed5738a5b0f60324d55c2220630c17f44926c66b3a"
2021-01-02 22:40:17 -08:00
dependencies = [
"Inflector",
2022-07-04 20:58:31 -07:00
"base64 0.13.0",
2021-01-02 22:40:17 -08:00
"bincode",
2022-07-04 20:58:31 -07:00
"borsh",
"bs58 0.4.0",
2021-01-02 22:40:17 -08:00
"lazy_static",
"log",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"serde_json",
"solana-account-decoder",
"solana-measure",
"solana-metrics",
2021-01-02 22:40:17 -08:00
"solana-runtime",
"solana-sdk",
"solana-vote-program",
2021-04-18 12:13:07 -07:00
"spl-associated-token-account",
"spl-memo",
"spl-token",
2022-07-04 20:58:31 -07:00
"spl-token-2022",
2021-01-02 22:40:17 -08:00
"thiserror",
]
[[package]]
name = "solana-version"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "7d3340187183a6c4b0c4c0897e62a8e424bea263b72368adf4a0fc49b02dc199"
2021-01-02 22:40:17 -08:00
dependencies = [
"log",
"rustc_version 0.4.0",
2022-07-04 20:58:31 -07:00
"semver 1.0.6",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-sdk",
]
[[package]]
name = "solana-vote-program"
2022-07-04 20:58:31 -07:00
version = "1.10.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "7bc5ae03749431a80f754d5950249296b27915912fbc76f29be489d50a235e62"
2021-01-02 22:40:17 -08:00
dependencies = [
"bincode",
"log",
"num-derive",
"num-traits",
"rustc_version 0.4.0",
2021-01-02 22:40:17 -08:00
"serde",
"serde_derive",
"solana-frozen-abi",
"solana-frozen-abi-macro",
"solana-metrics",
"solana-program-runtime",
2021-01-02 22:40:17 -08:00
"solana-sdk",
"thiserror",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "solana-zk-token-proof-program"
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10936892fbed52cac2885c2294483296a7010452f178159f49bee89b94f9cc73"
dependencies = [
"bytemuck",
"getrandom 0.1.16",
"num-derive",
"num-traits",
"solana-program-runtime",
"solana-sdk",
"solana-zk-token-sdk 1.10.29",
]
[[package]]
name = "solana-zk-token-sdk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74b149253f9ed1afb68b3161b53b62b637d0dd7a3b328dffdc8bb5878d48358e"
dependencies = [
"aes-gcm-siv",
"arrayref",
"base64 0.13.0",
"bincode",
"bytemuck",
"byteorder",
"cipher 0.3.0",
"curve25519-dalek",
"getrandom 0.1.16",
"lazy_static",
"merlin",
"num-derive",
"num-traits",
"rand 0.7.3",
"serde",
"serde_json",
"sha3 0.9.1",
"solana-program",
"solana-sdk",
"subtle",
"thiserror",
"zeroize",
]
[[package]]
name = "solana-zk-token-sdk"
version = "1.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a096f1eadbab6d9406763ad672a763fcaad81ab4c7185605976a39710d4b34e"
dependencies = [
"aes-gcm-siv",
"arrayref",
"base64 0.13.0",
"bincode",
"bytemuck",
"byteorder",
"cipher 0.4.3",
"curve25519-dalek",
"getrandom 0.1.16",
"lazy_static",
"merlin",
"num-derive",
"num-traits",
"rand 0.7.3",
"serde",
"serde_json",
"sha3 0.9.1",
"solana-program",
"solana-sdk",
"subtle",
"thiserror",
"zeroize",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-07-04 20:58:31 -07:00
[[package]]
name = "spki"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27"
dependencies = [
"base64ct",
"der",
]
2021-01-02 22:40:17 -08:00
[[package]]
2021-04-18 12:13:07 -07:00
name = "spl-associated-token-account"
2022-07-04 20:58:31 -07:00
version = "1.0.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "2b013067447a1396303ddfc294f36e3d260a32f8a16c501c295bcdc7de39b490"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"borsh",
2021-01-02 22:40:17 -08:00
"solana-program",
"spl-token",
2020-12-31 16:03:34 -08:00
]
2021-02-26 01:31:48 -08:00
[[package]]
name = "spl-memo"
2021-04-18 12:13:07 -07:00
version = "3.0.1"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-04-18 12:13:07 -07:00
checksum = "bd0dc6f70db6bacea7ff25870b016a65ba1d1b6013536f08e4fd79a8f9005325"
2021-02-26 01:31:48 -08:00
dependencies = [
"solana-program",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "spl-token"
2022-07-04 20:58:31 -07:00
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0cc67166ef99d10c18cb5e9c208901e6d8255c6513bb1f877977eba48e6cc4fb"
dependencies = [
"arrayref",
"num-derive",
"num-traits",
"num_enum",
"solana-program",
"thiserror",
]
[[package]]
name = "spl-token-2022"
version = "0.2.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "fce48c69350134e8678de5c0956a531b7de586b28eebdddc03211ceec0660983"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"arrayref",
2022-07-04 20:58:31 -07:00
"bytemuck",
2021-01-02 22:40:17 -08:00
"num-derive",
"num-traits",
"num_enum",
"solana-program",
2022-07-04 20:58:31 -07:00
"solana-zk-token-sdk 0.8.1",
"spl-memo",
"spl-token",
2020-12-31 16:03:34 -08:00
"thiserror",
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "stable_deref_trait"
version = "1.2.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2021-01-02 22:40:17 -08:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-07-04 20:58:31 -07:00
[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4faebde00e8ff94316c01800f9054fd2ba77d30d9e922541913051d1d978918b"
dependencies = [
"heck 0.4.0",
"proc-macro2 1.0.40",
"quote 1.0.15",
"rustversion",
"syn 1.0.98",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "subtle"
2021-08-31 14:52:41 -07:00
version = "2.4.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-01-02 22:40:17 -08:00
[[package]]
name = "symlink"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a"
[[package]]
name = "syn"
version = "0.15.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
dependencies = [
"proc-macro2 0.4.30",
"quote 0.6.13",
"unicode-xid 0.1.0",
]
[[package]]
name = "syn"
2022-07-04 20:58:31 -07:00
version = "1.0.98"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"unicode-ident",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "synstructure"
version = "0.12.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-08-31 14:52:41 -07:00
"unicode-xid 0.2.2",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "tar"
2022-03-16 12:55:15 -07:00
version = "0.4.38"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
2021-01-02 22:40:17 -08:00
dependencies = [
"filetime",
"libc",
"xattr",
]
[[package]]
name = "tempfile"
version = "3.3.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
"fastrand",
2021-01-02 22:40:17 -08:00
"libc",
"redox_syscall",
2021-01-02 22:40:17 -08:00
"remove_dir_all",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "termcolor"
2022-03-16 12:55:15 -07:00
version = "1.1.3"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
2021-01-02 22:40:17 -08:00
dependencies = [
"winapi-util",
]
[[package]]
name = "terminal_size"
2021-08-31 14:52:41 -07:00
version = "0.1.17"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08: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 = "textwrap"
2022-03-16 12:55:15 -07:00
version = "0.15.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
2021-01-02 22:40:17 -08:00
[[package]]
name = "thiserror"
version = "1.0.30"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
2021-01-02 22:40:17 -08:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.30"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "time"
2022-03-16 12:55:15 -07:00
version = "0.1.44"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"libc",
2022-03-16 12:55:15 -07:00
"wasi 0.10.0+wasi-snapshot-preview1",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "time"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
dependencies = [
"libc",
"num_threads",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "tiny-bip39"
2021-10-24 17:42:52 -07:00
version = "0.8.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-24 17:42:52 -07:00
checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-04-04 00:55:56 -07:00
"anyhow",
"hmac 0.8.1",
2021-01-02 22:40:17 -08:00
"once_cell",
2021-04-04 00:55:56 -07:00
"pbkdf2 0.4.0",
"rand 0.7.3",
2021-01-02 22:40:17 -08:00
"rustc-hash",
2022-07-04 20:58:31 -07:00
"sha2 0.9.9",
2021-04-04 00:55:56 -07:00
"thiserror",
2021-01-02 22:40:17 -08:00
"unicode-normalization",
2021-10-24 17:42:52 -07:00
"wasm-bindgen",
2021-04-04 00:55:56 -07:00
"zeroize",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "tinyvec"
version = "1.5.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
2021-01-02 22:40:17 -08:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.14.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9d0183f6f6001549ab68f8c7585093bb732beefbcf6d23a10b9b95c73a1dd49"
2021-02-26 01:31:48 -08:00
dependencies = [
"autocfg",
"bytes",
2021-02-26 01:31:48 -08:00
"libc",
"memchr",
2021-08-31 14:52:41 -07:00
"mio",
2021-02-26 01:31:48 -08:00
"num_cpus",
"once_cell",
2022-07-04 20:58:31 -07:00
"parking_lot 0.11.2",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2021-02-26 01:31:48 -08:00
"signal-hook-registry",
"tokio-macros",
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
2021-02-26 01:31:48 -08:00
[[package]]
name = "tokio-macros"
2022-03-16 12:55:15 -07:00
version = "1.7.0"
2021-02-26 01:31:48 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
2021-02-26 01:31:48 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-02-26 01:31:48 -08:00
]
2021-08-08 02:11:48 -07:00
[[package]]
name = "tokio-native-tls"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
dependencies = [
"native-tls",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "tokio-rustls"
version = "0.23.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a27d5f2b839802bd8267fa19b0530f5a08b9c08cd417976be2a65d130fe1c11b"
2021-01-02 22:40:17 -08:00
dependencies = [
"rustls",
2021-08-31 14:52:41 -07:00
"tokio",
2021-01-02 22:40:17 -08:00
"webpki",
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "tokio-stream"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df54d54117d6fdc4e4fea40fe1e4e566b3505700e148a6827e59b34b0d2600d9"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-tungstenite"
version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06cda1232a49558c46f8a504d5b93101d42c0bf7f911f12a105ba48168f821ae"
dependencies = [
"futures-util",
"log",
"rustls",
"tokio",
"tokio-rustls",
"tungstenite",
"webpki",
"webpki-roots",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "tokio-util"
version = "0.6.9"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
2020-12-31 16:03:34 -08:00
dependencies = [
"bytes",
2021-01-02 22:40:17 -08:00
"futures-core",
"futures-sink",
"log",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2021-08-31 14:52:41 -07:00
"tokio",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "toml"
version = "0.5.8"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"serde",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "tower-service"
2021-01-31 06:08:32 -08:00
version = "0.3.1"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
2021-01-02 22:40:17 -08:00
[[package]]
name = "tracing"
2022-03-16 12:55:15 -07:00
version = "0.1.32"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f"
2020-12-31 16:03:34 -08:00
dependencies = [
"cfg-if",
2021-04-04 00:55:56 -07:00
"pin-project-lite",
2022-07-04 20:58:31 -07:00
"tracing-attributes",
2021-01-02 22:40:17 -08:00
"tracing-core",
2020-12-31 16:03:34 -08:00
]
2022-07-04 20:58:31 -07:00
[[package]]
name = "tracing-attributes"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11c75893af559bc8e10716548bdef5cb2b983f8e637db9d0e15126b61b484ee2"
dependencies = [
"proc-macro2 1.0.40",
"quote 1.0.15",
"syn 1.0.98",
]
2020-12-31 16:03:34 -08:00
[[package]]
2021-01-02 22:40:17 -08:00
name = "tracing-core"
2022-03-16 12:55:15 -07:00
version = "0.1.23"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "aa31669fa42c09c34d94d8165dd2012e8ff3c66aca50f3bb226b68f216f2706c"
2020-12-31 16:03:34 -08:00
dependencies = [
2021-01-02 22:40:17 -08:00
"lazy_static",
2020-12-31 16:03:34 -08:00
]
[[package]]
2021-01-02 22:40:17 -08:00
name = "try-lock"
version = "0.2.3"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-02 22:40:17 -08:00
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "tungstenite"
2022-07-04 20:58:31 -07:00
version = "0.17.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "d96a2dea40e7570482f28eb57afbe42d97551905da6a9400acc5c328d24004f5"
2020-12-31 16:03:34 -08:00
dependencies = [
"base64 0.13.0",
2021-01-02 22:40:17 -08:00
"byteorder",
"bytes",
2021-01-02 22:40:17 -08:00
"http",
"httparse",
"log",
"rand 0.8.5",
"rustls",
2021-01-02 22:40:17 -08:00
"sha-1",
"thiserror",
2021-01-02 22:40:17 -08:00
"url",
"utf-8",
"webpki",
"webpki-roots",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "typenum"
2022-03-16 12:55:15 -07:00
version = "1.15.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2020-12-31 16:03:34 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2021-08-08 02:11:48 -07:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "unicode-bidi"
version = "0.3.7"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
2021-01-02 22:40:17 -08:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "unicode-ident"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
2021-01-02 22:40:17 -08:00
[[package]]
name = "unicode-normalization"
2021-08-31 14:52:41 -07:00
version = "0.1.19"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
2021-01-02 22:40:17 -08:00
dependencies = [
"tinyvec",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "unicode-segmentation"
2022-03-16 12:55:15 -07:00
version = "1.9.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2020-12-31 16:03:34 -08:00
[[package]]
name = "unicode-width"
version = "0.1.9"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2020-12-31 16:03:34 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2020-12-31 16:03:34 -08:00
[[package]]
name = "unicode-xid"
2021-08-31 14:52:41 -07:00
version = "0.2.2"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-12-31 16:03:34 -08:00
2022-07-04 20:58:31 -07:00
[[package]]
name = "universal-hash"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array",
"subtle",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2021-04-18 12:13:07 -07:00
[[package]]
name = "uriparse"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e515b1ada404168e145ac55afba3c42f04cf972201a8552d42e2abb17c1b7221"
dependencies = [
"fnv",
"lazy_static",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "url"
version = "2.2.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
2021-01-02 22:40:17 -08:00
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "utf-8"
2021-08-31 14:52:41 -07:00
version = "0.7.6"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2021-01-02 22:40:17 -08:00
[[package]]
name = "vcpkg"
2021-08-31 14:52:41 -07:00
version = "0.2.15"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-01-02 22:40:17 -08:00
2020-12-31 16:03:34 -08:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2022-03-16 12:55:15 -07:00
version = "0.9.4"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2020-12-31 16:03:34 -08:00
2021-01-02 22:40:17 -08:00
[[package]]
name = "walkdir"
2021-08-31 14:52:41 -07:00
version = "2.3.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-31 14:52:41 -07:00
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
2021-01-02 22:40:17 -08:00
dependencies = [
"same-file",
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2021-01-02 22:40:17 -08:00
[[package]]
name = "wasi"
2022-03-16 12:55:15 -07:00
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2021-01-02 22:40:17 -08:00
[[package]]
name = "wasm-bindgen"
2022-03-16 12:55:15 -07:00
version = "0.2.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-03-16 12:55:15 -07:00
version = "0.2.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
2021-01-02 22:40:17 -08:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2022-03-16 12:55:15 -07:00
version = "0.4.29"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
2021-01-02 22:40:17 -08:00
dependencies = [
"cfg-if",
2021-01-02 22:40:17 -08:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2022-03-16 12:55:15 -07:00
version = "0.2.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2021-01-02 22:40:17 -08:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-03-16 12:55:15 -07:00
version = "0.2.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-03-16 12:55:15 -07:00
version = "0.2.79"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
2021-01-02 22:40:17 -08:00
[[package]]
name = "web-sys"
2022-03-16 12:55:15 -07:00
version = "0.3.56"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
2021-01-02 22:40:17 -08:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.22.0"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
2021-01-02 22:40:17 -08:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
version = "0.22.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552ceb903e957524388c4d3475725ff2c8b7960922063af6ce53c9a43da07449"
2021-01-02 22:40:17 -08:00
dependencies = [
"webpki",
]
2020-12-31 16:03:34 -08: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 = [
2021-08-31 14:52:41 -07:00
"winapi",
2020-12-31 16:03:34 -08:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-07-04 20:58:31 -07:00
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2021-01-02 22:40:17 -08:00
[[package]]
name = "winreg"
2022-03-16 12:55:15 -07:00
version = "0.10.1"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2021-01-02 22:40:17 -08:00
dependencies = [
2021-08-31 14:52:41 -07:00
"winapi",
2021-01-02 22:40:17 -08:00
]
[[package]]
name = "without-alloc"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e34736feff52a0b3e5680927e947a4d8fac1f0b80dc8120b080dd8de24d75e2"
dependencies = [
"alloc-traits",
]
2021-01-02 22:40:17 -08:00
[[package]]
name = "xattr"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
dependencies = [
"libc",
]
[[package]]
name = "yaml-rust"
2021-01-31 06:08:32 -08:00
version = "0.4.5"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-31 06:08:32 -08:00
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
2021-01-02 22:40:17 -08:00
dependencies = [
"linked-hash-map",
]
2021-06-27 13:17:05 -07:00
[[package]]
name = "yansi"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fc79f4a1e39857fc00c3f662cbf2651c771f00e9c15fe2abc341806bd46bd71"
2022-07-04 20:58:31 -07:00
[[package]]
name = "yasna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c"
dependencies = [
"time 0.3.11",
]
2020-12-31 16:03:34 -08:00
[[package]]
name = "zeroize"
2022-07-04 20:58:31 -07:00
version = "1.3.0"
2020-12-31 16:03:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd"
2021-01-02 22:40:17 -08:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
2022-03-16 12:55:15 -07:00
version = "1.3.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-16 12:55:15 -07:00
checksum = "3f8f187641dad4f680d25c4bfc4225b418165984179f26ca76ec4fb6441d3a17"
2021-01-02 22:40:17 -08:00
dependencies = [
2022-07-04 20:58:31 -07:00
"proc-macro2 1.0.40",
2022-03-16 12:55:15 -07:00
"quote 1.0.15",
2022-07-04 20:58:31 -07:00
"syn 1.0.98",
2021-01-02 22:40:17 -08:00
"synstructure",
]
[[package]]
name = "zstd"
2022-07-04 20:58:31 -07:00
version = "0.11.2+zstd.1.5.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2021-01-02 22:40:17 -08:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2022-07-04 20:58:31 -07:00
version = "5.0.2+zstd.1.5.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2021-01-02 22:40:17 -08:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2022-07-04 20:58:31 -07:00
version = "2.0.1+zstd.1.5.2"
2021-01-02 22:40:17 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-04 20:58:31 -07:00
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
2021-01-02 22:40:17 -08:00
dependencies = [
"cc",
"libc",
]