web3-proxy/Cargo.lock

7027 lines
162 KiB
Plaintext
Raw Normal View History

2022-03-05 06:46:57 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2022-04-25 22:42:51 +03:00
[[package]]
name = "Inflector"
version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3"
dependencies = [
"lazy_static",
"regex",
]
2022-05-16 08:16:32 +03:00
[[package]]
name = "addr2line"
2023-01-24 14:25:12 +03:00
version = "0.19.0"
2022-05-16 08:16:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
2022-05-16 08:16:32 +03:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-04-25 22:42:51 +03:00
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-10-27 01:29:38 +03:00
"cipher 0.3.0",
2022-04-25 22:42:51 +03:00
"cpufeatures",
2023-04-11 01:01:36 +03:00
"opaque-debug",
2022-04-25 22:42:51 +03:00
]
2022-10-27 01:29:38 +03:00
[[package]]
name = "aes"
2023-01-24 14:25:12 +03:00
version = "0.8.2"
2022-10-27 01:29:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
2022-10-27 01:29:38 +03:00
dependencies = [
"cfg-if",
"cipher 0.4.3",
"cpufeatures",
]
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2022-11-11 21:40:52 +03:00
[[package]]
name = "ahash"
version = "0.8.3"
2022-11-11 21:40:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
2022-11-11 21:40:52 +03:00
dependencies = [
"cfg-if",
"once_cell",
"version_check",
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "aho-corasick"
2023-01-24 14:25:12 +03:00
version = "0.7.20"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
2022-04-25 22:14:10 +03:00
dependencies = [
"memchr",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "aliasable"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
2022-08-21 11:30:43 +03:00
[[package]]
name = "android_system_properties"
2023-01-24 14:25:12 +03:00
version = "0.1.5"
2022-08-21 11:30:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
2022-08-21 11:30:43 +03:00
dependencies = [
"libc",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "anyhow"
2023-04-05 22:30:52 +03:00
version = "1.0.70"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
2022-06-16 05:53:37 +03:00
dependencies = [
"backtrace",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "argh"
2023-01-12 02:19:21 +03:00
version = "0.1.10"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 02:19:21 +03:00
checksum = "ab257697eb9496bf75526f0217b5ed64636a9cfafa78b8365c71bd283fcef93e"
2022-03-05 06:46:57 +03:00
dependencies = [
"argh_derive",
"argh_shared",
]
[[package]]
name = "argh_derive"
2023-01-12 02:19:21 +03:00
version = "0.1.10"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 02:19:21 +03:00
checksum = "b382dbd3288e053331f03399e1db106c9fb0d8562ad62cb04859ae926f324fa6"
2022-03-05 06:46:57 +03:00
dependencies = [
"argh_shared",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "argh_shared"
2023-01-12 02:19:21 +03:00
version = "0.1.10"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-12 02:19:21 +03:00
checksum = "64cb94155d965e3d37ffbbe7cc5b82c3dd79dd33bd48e536f73d2cfb8d85506f"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "arrayvec"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "ascii-canvas"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6"
dependencies = [
"term",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "async-io"
2023-01-24 14:25:12 +03:00
version = "1.12.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794"
2022-07-26 07:53:38 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"async-lock",
"autocfg",
2022-07-26 07:53:38 +03:00
"concurrent-queue",
"futures-lite",
"libc",
"log",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
2023-02-25 11:47:16 +03:00
"windows-sys 0.42.0",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "async-lock"
2023-01-24 14:25:12 +03:00
version = "2.6.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
2022-07-26 07:53:38 +03:00
dependencies = [
"event-listener",
2023-01-24 14:25:12 +03:00
"futures-lite",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "async-stream"
version = "0.3.4"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad445822218ce64be7a341abfb0b1ea43b5c23aa83902542a4542e78309d8e5e"
2022-07-26 07:53:38 +03:00
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "async-stream-impl"
version = "0.3.4"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4655ae1a7b0cdf149156f780c5bf3f1352bc53cbd9e0a361a7ef7b22947e965"
2022-07-26 07:53:38 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "async-trait"
2023-04-05 22:30:52 +03:00
version = "0.1.68"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
2022-04-25 22:42:51 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 2.0.13",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "async_io_stream"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
dependencies = [
"futures",
"pharos",
"rustc_version",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "atoi"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7c57d12312ff59c811c0643f4d80830505833c9ffaebd193d819392b265be8e"
dependencies = [
"num-traits",
]
[[package]]
name = "atomic-polyfill"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3ff7eb3f316534d83a8a2c3d1674ace8a5a71198eba31e2e2b597833f699b28"
dependencies = [
"critical-section",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
2022-04-25 22:42:51 +03:00
"libc",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "auto_impl"
2022-07-25 21:36:15 +03:00
version = "1.0.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "8a8c1df849285fbacd587de7818cc7d13be6cd2cbcd47a04fb1801b0e2706e33"
2022-04-25 22:42:51 +03:00
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2022-05-17 19:23:27 +03:00
[[package]]
name = "axum"
2023-04-05 22:30:52 +03:00
version = "0.6.12"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "349f8ccfd9221ee7d1f3d4b33e1f8319b3a81ed8f61f2ea40b37b859794b4491"
2022-05-17 19:23:27 +03:00
dependencies = [
"async-trait",
"axum-core",
"base64 0.21.0",
2022-05-17 19:23:27 +03:00
"bitflags",
"bytes",
"futures-util",
2022-08-13 00:41:11 +03:00
"headers",
2022-05-17 19:23:27 +03:00
"http",
"http-body",
"hyper",
"itoa",
2022-05-17 19:23:27 +03:00
"matchit",
"memchr",
"mime",
2022-07-14 00:49:57 +03:00
"percent-encoding",
2022-05-17 19:23:27 +03:00
"pin-project-lite",
2022-12-14 05:13:23 +03:00
"rustversion",
2022-05-17 19:23:27 +03:00
"serde",
2022-05-20 03:53:47 +03:00
"serde_json",
2022-12-14 05:13:23 +03:00
"serde_path_to_error",
2022-05-20 03:53:47 +03:00
"serde_urlencoded",
2023-01-12 02:19:21 +03:00
"sha1",
2022-05-17 19:23:27 +03:00
"sync_wrapper",
"tokio",
2023-04-11 01:01:36 +03:00
"tokio-tungstenite",
2022-05-17 19:23:27 +03:00
"tower",
"tower-layer",
"tower-service",
]
2022-07-07 06:22:09 +03:00
[[package]]
name = "axum-client-ip"
version = "0.4.0"
2022-07-07 06:22:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d719fabd6813392bbc10e1fe67f2977fad52791a836e51236f7e02f2482e017"
2022-07-07 06:22:09 +03:00
dependencies = [
"axum",
"forwarded-header-value",
"serde",
2022-07-07 06:22:09 +03:00
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "axum-core"
2023-03-10 20:45:47 +03:00
version = "0.3.3"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 20:45:47 +03:00
checksum = "b2f958c80c248b34b9a877a643811be8dbca03ca5ba827f2b63baf3a81e5fc4e"
2022-05-17 19:23:27 +03:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
2022-12-14 05:13:23 +03:00
"rustversion",
2022-09-12 17:36:26 +03:00
"tower-layer",
"tower-service",
2022-05-17 19:23:27 +03:00
]
2022-08-16 22:29:00 +03:00
[[package]]
name = "axum-macros"
2023-04-05 22:30:52 +03:00
version = "0.3.7"
2022-08-16 22:29:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "2bb524613be645939e280b7279f7b017f98cf7f5ef084ec374df373530e73277"
2022-08-16 22:29:00 +03:00
dependencies = [
"heck 0.4.1",
2022-08-16 22:29:00 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 2.0.13",
2022-08-16 22:29:00 +03:00
]
2022-05-16 08:16:32 +03:00
[[package]]
name = "backtrace"
2023-01-24 14:25:12 +03:00
version = "0.3.67"
2022-05-16 08:16:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
2022-05-16 08:16:32 +03:00
dependencies = [
"addr2line",
"cc",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-05-16 08:16:32 +03:00
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "bae"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33b8de67cc41132507eeece2584804efcb15f85ba516e34c944b7667f480397a"
dependencies = [
"heck 0.3.3",
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "base16ct"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
[[package]]
2023-04-11 01:01:36 +03:00
name = "base16ct"
version = "0.2.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "base64"
2023-01-24 14:25:12 +03:00
version = "0.13.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2022-03-05 06:46:57 +03:00
[[package]]
name = "base64"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
2022-04-25 22:42:51 +03:00
[[package]]
name = "base64ct"
2023-01-24 14:25:12 +03:00
version = "1.5.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf"
2022-04-25 22:42:51 +03:00
[[package]]
name = "bech32"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dabbe35f96fb9507f7330793dc490461b2962659ac5d427181e451a623751d1"
2023-02-08 22:11:16 +03:00
[[package]]
name = "bigdecimal"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6aaf33151a6429fe9211d1b276eafdf70cdff28b071e76c0b0e1503221ea3744"
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bit-set"
2023-01-24 14:25:12 +03:00
version = "0.5.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
2022-04-25 22:42:51 +03:00
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2022-03-05 06:46:57 +03:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-04-25 22:42:51 +03:00
[[package]]
name = "bitvec"
version = "0.17.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c"
dependencies = [
"either",
"radium 0.3.0",
]
[[package]]
name = "bitvec"
2023-01-24 14:25:12 +03:00
version = "1.0.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-03-20 14:22:30 +03:00
"funty",
2022-04-25 22:42:51 +03:00
"radium 0.7.0",
"tap",
2023-03-20 14:22:30 +03:00
"wyz",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "block-buffer"
2023-01-24 14:25:12 +03:00
version = "0.10.3"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-03-05 06:46:57 +03:00
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "borsh"
version = "0.10.2"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40f9ca3698b2e4cb7c15571db0abc5551dca417a21ae8140460b50309bb2cc62"
2023-01-24 14:25:12 +03:00
dependencies = [
"borsh-derive",
"hashbrown 0.13.2",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "borsh-derive"
version = "0.10.2"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "598b3eacc6db9c3ee57b22707ad8f6a8d2f6d442bfe24ffeb8cbb70ca59e6a35"
2023-01-24 14:25:12 +03:00
dependencies = [
"borsh-derive-internal",
"borsh-schema-derive-internal",
"proc-macro-crate 0.1.5",
"proc-macro2",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "borsh-derive-internal"
version = "0.10.2"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "186b734fa1c9f6743e90c95d7233c9faab6360d1a96d4ffa19d9cfd1e9350f8a"
2023-01-24 14:25:12 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "borsh-schema-derive-internal"
version = "0.10.2"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b7ff1008316626f485991b960ade129253d4034014616b94f309a15366cc49"
2023-01-24 14:25:12 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
2023-04-11 01:01:36 +03:00
dependencies = [
"sha2 0.9.9",
]
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "bumpalo"
2023-01-24 14:25:12 +03:00
version = "3.12.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "byte-slice-cast"
2023-01-24 14:25:12 +03:00
version = "1.2.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c3ac9f8b63eca6fd385229b3675f6cc0dc5c8a5c8a54a59d4f52ffd670d87b0c"
2022-04-25 22:42:51 +03:00
2023-01-24 14:25:12 +03:00
[[package]]
name = "bytecheck"
version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
dependencies = [
"bytecheck_derive",
"ptr_meta",
]
[[package]]
name = "bytecheck_derive"
version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "bytecount"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
2022-03-05 06:46:57 +03:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
2023-02-25 11:47:16 +03:00
version = "1.4.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "bzip2"
2023-01-24 14:25:12 +03:00
version = "0.4.4"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
2022-07-25 21:36:15 +03:00
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "camino"
2023-01-24 14:25:12 +03:00
version = "1.1.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde",
]
[[package]]
name = "cargo-platform"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
dependencies = [
"serde",
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "cargo_metadata"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
dependencies = [
"camino",
"cargo-platform",
"semver",
"serde",
"serde_json",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "cargo_metadata"
version = "0.15.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08a1ec454bc3eead8719cb56e15dbbfecdbc14e4b3a3ae4936cc6e31f5fc0d07"
2022-04-25 22:42:51 +03:00
dependencies = [
"camino",
"cargo-platform",
"semver",
"serde",
"serde_json",
2023-01-24 14:25:12 +03:00
"thiserror",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
2022-03-05 06:46:57 +03:00
[[package]]
name = "cc"
2023-01-31 02:57:06 +03:00
version = "1.0.79"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 02:57:06 +03:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2022-07-25 21:36:15 +03:00
dependencies = [
"jobserver",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-05-20 03:53:47 +03:00
[[package]]
name = "chrono"
2023-04-05 22:30:52 +03:00
version = "0.4.24"
2022-05-20 03:53:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-08-21 11:30:43 +03:00
"iana-time-zone",
2022-08-16 03:33:26 +03:00
"js-sys",
2022-05-20 03:53:47 +03:00
"num-integer",
"num-traits",
2022-07-26 07:53:38 +03:00
"serde",
2023-01-24 14:25:12 +03:00
"time 0.1.45",
2022-08-16 03:33:26 +03:00
"wasm-bindgen",
2022-08-30 23:01:42 +03:00
"winapi",
2022-05-20 03:53:47 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "cipher"
version = "0.3.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-10-27 01:29:38 +03:00
]
[[package]]
name = "cipher"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
dependencies = [
"crypto-common",
"inout",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "clap"
2023-01-24 14:25:12 +03:00
version = "3.2.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5"
2022-04-25 22:42:51 +03:00
dependencies = [
"atty",
"bitflags",
"clap_derive",
"clap_lex",
"indexmap",
2022-07-26 07:53:38 +03:00
"once_cell",
2022-04-25 22:42:51 +03:00
"strsim",
"termcolor",
2022-09-05 08:53:58 +03:00
"textwrap",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "clap_complete"
version = "3.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8"
dependencies = [
"clap",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "clap_derive"
2023-01-24 14:25:12 +03:00
version = "3.2.18"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65"
2022-03-05 06:46:57 +03:00
dependencies = [
"heck 0.4.1",
2022-04-25 22:42:51 +03:00
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
2022-04-24 21:56:46 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "clap_lex"
2022-07-26 07:53:38 +03:00
version = "0.2.4"
2022-04-24 21:56:46 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-26 07:53:38 +03:00
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
2022-04-24 21:56:46 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"os_str_bytes",
2022-04-24 21:56:46 +03:00
]
2023-04-20 01:22:27 +03:00
[[package]]
name = "cmake"
version = "0.1.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130"
dependencies = [
"cc",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "coins-bip32"
2023-04-11 01:01:36 +03:00
version = "0.8.3"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "b30a84aab436fcb256a2ab3c80663d8aec686e6bae12827bb05fef3e1e439c9f"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"bincode",
"bs58",
"coins-core",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
"getrandom",
2022-07-25 21:36:15 +03:00
"hmac",
2023-04-11 01:01:36 +03:00
"k256 0.13.1",
2022-04-25 22:42:51 +03:00
"lazy_static",
"serde",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-04-25 22:42:51 +03:00
"thiserror",
2022-03-05 06:46:57 +03:00
]
2022-04-24 10:26:00 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "coins-bip39"
2023-04-11 01:01:36 +03:00
version = "0.8.5"
2022-04-24 10:26:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "ad2a68a46b9d8cc90484f0689adc0e4c890eb215bf698ae52e5235bb88f40be7"
2022-04-24 10:26:00 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"bitvec 0.17.4",
"coins-bip32",
"getrandom",
"hex",
2022-07-25 21:36:15 +03:00
"hmac",
2023-04-11 01:01:36 +03:00
"once_cell",
"pbkdf2 0.12.1",
2022-11-12 11:24:32 +03:00
"rand",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-04-25 22:42:51 +03:00
"thiserror",
2023-04-11 01:01:36 +03:00
"tracing",
2022-04-24 10:26:00 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "coins-core"
2023-04-11 01:01:36 +03:00
version = "0.8.3"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "9b949a1c63fb7eb591eb7ba438746326aedf0ae843e51ec92ba6bec5bb382c4f"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"base64 0.21.0",
2022-04-25 22:42:51 +03:00
"bech32",
2023-04-11 01:01:36 +03:00
"bs58",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2023-04-11 01:01:36 +03:00
"generic-array",
2022-04-25 22:42:51 +03:00
"hex",
2022-07-25 21:36:15 +03:00
"ripemd",
2022-04-25 22:42:51 +03:00
"serde",
"serde_derive",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
"sha3",
2022-04-25 22:42:51 +03:00
"thiserror",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "color-eyre"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f1885697ee8a177096d42f158922251a41973117f6d8a234cee94b9509157b7"
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
"url",
]
[[package]]
name = "color-spantrace"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6eee477a4a8a72f4addd4de416eb56d54bc307b284d6601bafdee1f4ea462d1"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
[[package]]
name = "combine"
2023-01-24 14:25:12 +03:00
version = "4.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
dependencies = [
"bytes",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
2022-10-27 01:29:38 +03:00
"tokio-util",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "concurrent-queue"
2023-01-24 14:25:12 +03:00
version = "2.1.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e"
2022-07-26 07:53:38 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"crossbeam-utils",
2022-07-26 07:53:38 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "console"
version = "0.14.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "3993e6445baa160675931ec041a5e03ca84b9c6e32a056150d3aa2bdda0a1f45"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-02-03 00:44:57 +03:00
"encode_unicode 0.3.6",
2022-04-25 22:42:51 +03:00
"lazy_static",
"libc",
"regex",
"terminal_size",
"unicode-width",
2022-08-30 23:01:42 +03:00
"winapi",
2022-03-05 06:46:57 +03:00
]
[[package]]
2022-04-25 22:42:51 +03:00
name = "console"
2023-01-24 14:25:12 +03:00
version = "0.15.5"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-02-03 00:44:57 +03:00
"encode_unicode 0.3.6",
2023-01-24 14:25:12 +03:00
"lazy_static",
2022-04-25 22:42:51 +03:00
"libc",
2023-02-25 11:47:16 +03:00
"windows-sys 0.42.0",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "console-api"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86"
dependencies = [
"prost",
"prost-types",
"tonic",
"tracing-core",
]
[[package]]
name = "console-subscriber"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a3a81dfaf6b66bce5d159eddae701e3a002f194d378cbf7be5f053c281d9be"
dependencies = [
"console-api",
"crossbeam-channel",
"crossbeam-utils",
"futures",
"hdrhistogram",
"humantime",
"prost-types",
"serde",
"serde_json",
"thread_local",
"tokio",
"tokio-stream",
"tonic",
"tracing",
"tracing-core",
"tracing-subscriber 0.3.16",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "const-oid"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3"
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "const-oid"
2023-04-11 01:01:36 +03:00
version = "0.9.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
2022-07-25 21:36:15 +03:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2022-03-05 06:46:57 +03:00
2022-04-26 19:50:02 +03:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "convert_case"
2022-10-27 01:29:38 +03:00
version = "0.6.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
dependencies = [
"unicode-segmentation",
]
2022-04-25 22:42:51 +03:00
2023-02-22 07:25:02 +03:00
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
2022-08-21 11:30:43 +03:00
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
2022-05-28 07:25:55 +03:00
[[package]]
name = "counter"
2022-10-18 00:47:58 +03:00
version = "0.5.7"
2022-05-28 07:25:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-18 00:47:58 +03:00
checksum = "2d458e66999348f56fd3ffcfbb7f7951542075ca8359687c703de6500c1ddccd"
2022-05-28 07:25:55 +03:00
dependencies = [
"num-traits",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "cpufeatures"
2023-01-24 14:25:12 +03:00
version = "0.2.5"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2022-04-25 22:42:51 +03:00
dependencies = [
"libc",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-07-25 21:36:15 +03:00
]
[[package]]
name = "critical-section"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6548a0ad5d2549e111e1f6a11a6c2e2d00ce6a3dafe22948d67c2b443f775e52"
2022-04-25 22:42:51 +03:00
[[package]]
name = "crossbeam-channel"
2022-09-05 06:40:13 +03:00
version = "0.5.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-05 06:40:13 +03:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2023-01-24 14:25:12 +03:00
version = "0.8.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2023-01-24 14:25:12 +03:00
version = "0.9.13"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"crossbeam-utils",
"memoffset",
"scopeguard",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "crossbeam-queue"
2023-01-24 14:25:12 +03:00
version = "0.3.8"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
2022-07-26 07:53:38 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-07-26 07:53:38 +03:00
"crossbeam-utils",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "crossbeam-utils"
2023-01-24 14:25:12 +03:00
version = "0.8.14"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "crossterm"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0ebde6a9dd5e331cd6c6f48253254d117642c31653baa475e394657c59c1f7d"
dependencies = [
"bitflags",
"crossterm_winapi",
"futures-core",
"libc",
"mio 0.7.14",
"parking_lot 0.11.2",
"signal-hook",
"signal-hook-mio",
"winapi",
]
[[package]]
name = "crossterm_winapi"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a6966607622438301997d3dac0d2f6e9a90c68bb6bc1785ea98456ab93c0507"
dependencies = [
"winapi",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2022-07-26 07:53:38 +03:00
[[package]]
name = "crypto-bigint"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21"
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-07-26 07:53:38 +03:00
"subtle",
]
2022-07-14 00:49:57 +03:00
[[package]]
name = "crypto-bigint"
2023-01-24 14:25:12 +03:00
version = "0.4.9"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
"rand_core",
"subtle",
"zeroize",
]
[[package]]
name = "crypto-bigint"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c2538c4e68e52548bacb3e83ac549f903d44f011ac9d5abb5e132e67d0808f7"
dependencies = [
"generic-array",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-04-25 22:42:51 +03:00
"subtle",
"zeroize",
]
[[package]]
name = "crypto-common"
2023-01-24 14:25:12 +03:00
version = "0.1.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-04-25 22:42:51 +03:00
"typenum",
]
2023-02-03 00:44:57 +03:00
[[package]]
name = "csv"
version = "1.2.0"
2023-02-03 00:44:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af91f40b7355f82b0a891f50e70399475945bb0b0da4f1700ce60761c9d3e359"
2023-02-03 00:44:57 +03:00
dependencies = [
"csv-core",
"itoa",
2023-02-03 00:44:57 +03:00
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "ctr"
2022-10-27 01:29:38 +03:00
version = "0.9.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-10-27 01:29:38 +03:00
"cipher 0.4.3",
2022-04-25 22:42:51 +03:00
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "cxx"
version = "1.0.91"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86d3488e7665a7a483b57e25bdd90d0aeb2bc7608c8d0346acf2ad3f1caf1d62"
2023-01-24 14:25:12 +03:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
version = "1.0.91"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48fcaf066a053a41a81dfb14d57d99738b767febb8b735c3016e469fac5da690"
2023-01-24 14:25:12 +03:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "cxxbridge-flags"
version = "1.0.91"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2ef98b8b717a829ca5603af80e1f9e2e48013ab227b68ef37872ef84ee479bf"
2023-01-24 14:25:12 +03:00
[[package]]
name = "cxxbridge-macro"
version = "1.0.91"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "086c685979a698443656e5cf7856c95c642295a38599f12fb1ff76fb28d19892"
2023-01-24 14:25:12 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "dashmap"
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
dependencies = [
"cfg-if",
"num_cpus",
]
2022-09-14 09:18:13 +03:00
[[package]]
name = "deadpool"
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
dependencies = [
"async-trait",
"deadpool-runtime",
"num_cpus",
"retain_mut",
"serde",
"tokio",
]
[[package]]
name = "deadpool-redis"
2022-12-14 05:13:23 +03:00
version = "0.11.1"
2022-09-14 09:18:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-14 05:13:23 +03:00
checksum = "2b8bde44cbfdf17ae5baa45c9f43073b320f1a19955389315629304a23909ad2"
2022-09-14 09:18:13 +03:00
dependencies = [
"deadpool",
"redis",
"serde",
]
[[package]]
name = "deadpool-runtime"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
dependencies = [
"tokio",
]
2022-10-25 00:07:29 +03:00
[[package]]
name = "debugid"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
dependencies = [
"serde",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-10-25 00:07:29 +03:00
]
2022-09-15 20:57:24 +03:00
[[package]]
name = "deferred-rate-limiter"
version = "0.2.0"
dependencies = [
"anyhow",
2023-01-15 23:02:33 +03:00
"hashbrown 0.13.2",
2022-11-12 11:24:32 +03:00
"log",
2022-09-15 20:57:24 +03:00
"moka",
"redis-rate-limiter",
"tokio",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "der"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c"
dependencies = [
"const-oid 0.7.1",
"crypto-bigint 0.3.2",
"pem-rfc7468",
]
2022-07-14 00:49:57 +03:00
[[package]]
name = "der"
2023-01-24 14:25:12 +03:00
version = "0.6.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"const-oid 0.9.2",
"zeroize",
]
[[package]]
name = "der"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82b10af9f9f9f2134a42d3f8aa74658660f2e0234b0eb81bd171df8aa32779ed"
dependencies = [
"const-oid 0.9.2",
2022-07-25 21:36:15 +03:00
"zeroize",
2022-04-25 22:42:51 +03:00
]
2022-04-26 19:50:02 +03:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case 0.4.0",
"proc-macro2",
"quote",
"rustc_version",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-26 19:50:02 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "dialoguer"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9dd058f8b65922819fabb4a41e7d1964e56344042c26efbccd465202c23fa0c"
dependencies = [
"console 0.14.1",
"lazy_static",
"tempfile",
"zeroize",
]
[[package]]
name = "diff"
2023-01-24 14:25:12 +03:00
version = "0.1.13"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2022-04-25 22:42:51 +03:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "digest"
2023-01-24 14:25:12 +03:00
version = "0.10.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"block-buffer 0.10.3",
2023-04-11 01:01:36 +03:00
"const-oid 0.9.2",
2022-04-25 22:42:51 +03:00
"crypto-common",
"subtle",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"dirs-sys-next",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2022-07-26 03:38:00 +03:00
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
2022-10-25 00:07:29 +03:00
[[package]]
name = "dotenvy"
version = "0.15.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03d8c417d7a8cb362e0c37e5d815f5eb7c37f79ff93707329d5a194e42e54ca0"
2022-04-25 22:42:51 +03:00
[[package]]
name = "dunce"
2022-10-27 01:29:38 +03:00
version = "1.0.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
2022-04-25 22:42:51 +03:00
2022-07-14 00:49:57 +03:00
[[package]]
name = "ecdsa"
2023-01-24 14:25:12 +03:00
version = "0.14.8"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"der 0.6.1",
2023-04-11 01:01:36 +03:00
"elliptic-curve 0.12.3",
"rfc6979 0.3.1",
"signature 1.6.4",
]
[[package]]
name = "ecdsa"
version = "0.16.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a48e5d537b8a30c0b023116d981b16334be1485af7ca68db3a2b7024cbc957fd"
dependencies = [
"der 0.7.3",
"digest 0.10.6",
"elliptic-curve 0.13.4",
"rfc6979 0.4.0",
"signature 2.1.0",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "either"
2023-02-08 22:11:16 +03:00
version = "1.8.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-04-25 22:42:51 +03:00
2022-07-14 00:49:57 +03:00
[[package]]
name = "elliptic-curve"
2022-10-27 01:29:38 +03:00
version = "0.12.3"
2022-07-14 00:49:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"base16ct 0.1.1",
2023-01-24 14:25:12 +03:00
"crypto-bigint 0.4.9",
"der 0.6.1",
"digest 0.10.6",
2023-04-11 01:01:36 +03:00
"ff 0.12.1",
"generic-array",
"group 0.12.1",
"rand_core",
"sec1 0.3.0",
"subtle",
"zeroize",
]
[[package]]
name = "elliptic-curve"
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75c71eaa367f2e5d556414a8eea812bc62985c879748d6403edabd9cb03f16e7"
dependencies = [
"base16ct 0.2.0",
"crypto-bigint 0.5.1",
"digest 0.10.6",
"ff 0.13.0",
"generic-array",
"group 0.13.0",
"pkcs8 0.10.2",
2022-11-12 11:24:32 +03:00
"rand_core",
2023-04-11 01:01:36 +03:00
"sec1 0.7.1",
2022-04-25 22:42:51 +03:00
"subtle",
"zeroize",
]
[[package]]
name = "ena"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3"
dependencies = [
"log",
]
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2023-02-03 00:44:57 +03:00
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2022-04-25 22:42:51 +03:00
[[package]]
name = "encoding_rs"
2023-02-25 11:47:16 +03:00
version = "0.8.32"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "enr"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb4d5fbf6f56acecd38f5988eb2e4ae412008a2a30268c748c701ec6322f39d4"
dependencies = [
"base64 0.13.1",
"bytes",
"hex",
"k256 0.13.1",
"log",
"rand",
"rlp",
"serde",
"sha3",
"zeroize",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "entities"
version = "0.17.0"
2022-08-04 02:17:02 +03:00
dependencies = [
2022-12-14 05:13:23 +03:00
"ethers",
2022-08-04 02:17:02 +03:00
"sea-orm",
"serde",
2022-12-14 05:13:23 +03:00
"ulid",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-08-04 02:17:02 +03:00
]
2022-07-26 07:53:38 +03:00
2022-11-12 11:24:32 +03:00
[[package]]
name = "env_logger"
version = "0.10.0"
2022-11-12 11:24:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
2022-11-12 11:24:32 +03:00
dependencies = [
"humantime",
"is-terminal",
2022-11-12 11:24:32 +03:00
"log",
"regex",
"termcolor",
]
[[package]]
name = "errno"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
dependencies = [
"errno-dragonfly",
"libc",
"winapi",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "errno"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "error-chain"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
dependencies = [
"version_check",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "eth-keystore"
2022-10-27 01:29:38 +03:00
version = "0.5.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"aes 0.8.2",
2022-04-25 22:42:51 +03:00
"ctr",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
"hex",
2022-07-25 21:36:15 +03:00
"hmac",
2023-04-11 01:01:36 +03:00
"pbkdf2 0.11.0",
2022-11-12 11:24:32 +03:00
"rand",
2022-04-25 22:42:51 +03:00
"scrypt",
"serde",
"serde_json",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
"sha3",
2022-04-25 22:42:51 +03:00
"thiserror",
2022-07-26 07:53:38 +03:00
"uuid 0.8.2",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "ethabi"
2023-01-24 14:25:12 +03:00
version = "18.0.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "7413c5f74cc903ea37386a8965a936cbeb334bd270862fdece542c1b2dcbc898"
2022-04-25 22:42:51 +03:00
dependencies = [
"ethereum-types",
"hex",
"once_cell",
"regex",
"serde",
"serde_json",
"sha3",
2022-04-25 22:42:51 +03:00
"thiserror",
"uint",
]
[[package]]
name = "ethbloom"
2023-01-24 14:25:12 +03:00
version = "0.13.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60"
2022-04-25 22:42:51 +03:00
dependencies = [
"crunchy",
"fixed-hash",
2022-10-27 01:29:38 +03:00
"impl-codec",
2022-04-25 22:42:51 +03:00
"impl-rlp",
"impl-serde",
2022-10-27 01:29:38 +03:00
"scale-info",
2022-04-25 22:42:51 +03:00
"tiny-keccak",
]
[[package]]
name = "ethereum-types"
2023-01-24 14:25:12 +03:00
version = "0.14.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee"
2022-04-25 22:42:51 +03:00
dependencies = [
"ethbloom",
"fixed-hash",
2022-10-27 01:29:38 +03:00
"impl-codec",
2022-04-25 22:42:51 +03:00
"impl-rlp",
"impl-serde",
"primitive-types",
2022-10-27 01:29:38 +03:00
"scale-info",
2022-04-25 22:42:51 +03:00
"uint",
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "697aba1bec98cb86e7bebd69f9bb365218871464137af9e93e7a72bd6dc421d0"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-05-20 05:01:02 +03:00
"ethers-addressbook",
"ethers-contract",
"ethers-core",
"ethers-etherscan",
"ethers-middleware",
"ethers-providers",
"ethers-signers",
"ethers-solc",
2022-05-20 03:53:47 +03:00
]
[[package]]
name = "ethers-addressbook"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "c0b603812e5e4d63521c691cbc1f34743879e96a1ee96c6594639d7fa0cf6fbc"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-05-20 05:01:02 +03:00
"ethers-core",
2022-04-25 22:42:51 +03:00
"once_cell",
"serde",
"serde_json",
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers-contract"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "b4e8ed7c2b2a22e07b65ae0eb426c948a7448f1be15c66e4813e02c423751fc9"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-05-20 05:01:02 +03:00
"ethers-contract-abigen",
2022-12-14 05:13:23 +03:00
"ethers-contract-derive",
2022-05-20 05:01:02 +03:00
"ethers-core",
"ethers-providers",
2022-04-25 22:42:51 +03:00
"futures-util",
"hex",
"once_cell",
"pin-project",
"serde",
"serde_json",
"thiserror",
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers-contract-abigen"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "bf0984f4ec4e267fd27b7c9fa2f73e72c5c98491a73f777290654154d104f723"
2022-05-20 03:53:47 +03:00
dependencies = [
"Inflector",
"dunce",
2022-05-20 05:01:02 +03:00
"ethers-core",
2023-04-11 01:01:36 +03:00
"ethers-etherscan",
2022-04-25 22:42:51 +03:00
"eyre",
"getrandom",
"hex",
2023-04-11 01:01:36 +03:00
"prettyplease",
2022-04-25 22:42:51 +03:00
"proc-macro2",
"quote",
2022-10-27 01:29:38 +03:00
"regex",
2022-04-25 22:42:51 +03:00
"reqwest",
"serde",
"serde_json",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-04-11 01:01:36 +03:00
"tokio",
"toml 0.7.3",
2022-07-14 00:49:57 +03:00
"url",
2022-04-25 22:42:51 +03:00
"walkdir",
]
2022-12-14 05:13:23 +03:00
[[package]]
name = "ethers-contract-derive"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-12-14 05:13:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "914e9211077a1b590af1ee6b8dfbd54515c808119546c95da69479908dc3d4de"
2022-12-14 05:13:23 +03:00
dependencies = [
"ethers-contract-abigen",
"ethers-core",
"hex",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-12-14 05:13:23 +03:00
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers-core"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "40bf114f1017ace0f622f1652f59c2c5e1abfe7d88891cca0c43da979b351de0"
2022-05-20 03:53:47 +03:00
dependencies = [
2023-03-20 14:22:30 +03:00
"arrayvec",
2022-05-20 03:53:47 +03:00
"bytes",
"cargo_metadata 0.15.3",
2022-05-20 03:53:47 +03:00
"chrono",
2022-10-27 01:29:38 +03:00
"convert_case 0.6.0",
2023-04-11 01:01:36 +03:00
"elliptic-curve 0.13.4",
2022-05-20 03:53:47 +03:00
"ethabi",
2023-04-11 01:01:36 +03:00
"generic-array",
"getrandom",
2022-05-20 03:53:47 +03:00
"hex",
2023-04-11 01:01:36 +03:00
"k256 0.13.1",
"num_enum",
2022-05-20 03:53:47 +03:00
"once_cell",
2022-10-27 01:29:38 +03:00
"open-fastrlp",
2022-05-20 03:53:47 +03:00
"proc-macro2",
2022-11-12 11:24:32 +03:00
"rand",
2022-05-20 03:53:47 +03:00
"rlp",
"serde",
"serde_json",
"strum",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-04-11 01:01:36 +03:00
"tempfile",
2022-05-20 03:53:47 +03:00
"thiserror",
"tiny-keccak",
"unicode-xid",
]
[[package]]
name = "ethers-etherscan"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "8920b59cf81e357df2c8102d6a9dc81c2d68f7409543ff3b6868851ecf007807"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-05-20 05:01:02 +03:00
"ethers-core",
2023-04-11 01:01:36 +03:00
"ethers-solc",
2022-07-25 21:36:15 +03:00
"getrandom",
2022-05-20 03:53:47 +03:00
"reqwest",
"semver",
"serde",
"serde_json",
"thiserror",
"tracing",
]
[[package]]
name = "ethers-middleware"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "c54b30f67c1883ed68bd38aedbdd321831382c12e1b95089c8261c79bb85e4da"
2022-05-20 03:53:47 +03:00
dependencies = [
"async-trait",
2023-04-11 01:01:36 +03:00
"auto_impl",
2022-05-20 05:01:02 +03:00
"ethers-contract",
"ethers-core",
"ethers-etherscan",
"ethers-providers",
"ethers-signers",
2023-04-11 01:01:36 +03:00
"futures-channel",
2022-05-20 03:53:47 +03:00
"futures-locks",
2022-04-25 22:42:51 +03:00
"futures-util",
"instant",
"reqwest",
"serde",
"serde_json",
"thiserror",
"tokio",
"tracing",
"tracing-futures",
2022-07-14 00:49:57 +03:00
"url",
2022-04-25 22:42:51 +03:00
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers-providers"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "c2fa0857eaad0c1678f982a2f4cfbe33ebd51d273cc93de0182b7c693f2a84a1"
2022-05-20 03:53:47 +03:00
dependencies = [
"async-trait",
2023-04-11 01:01:36 +03:00
"auto_impl",
"base64 0.21.0",
"bytes",
"enr",
2022-05-20 05:01:02 +03:00
"ethers-core",
2022-04-25 22:42:51 +03:00
"futures-channel",
"futures-core",
"futures-timer",
"futures-util",
2022-07-25 21:36:15 +03:00
"getrandom",
2022-04-25 22:42:51 +03:00
"hashers",
"hex",
"http",
2023-04-11 01:01:36 +03:00
"instant",
2022-04-25 22:42:51 +03:00
"once_cell",
"pin-project",
"reqwest",
"serde",
"serde_json",
"thiserror",
"tokio",
2023-04-11 01:01:36 +03:00
"tokio-tungstenite",
2022-04-25 22:42:51 +03:00
"tracing",
"tracing-futures",
2022-07-14 00:49:57 +03:00
"url",
2022-04-25 22:42:51 +03:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"ws_stream_wasm",
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "ethers-signers"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "5caa7cad4f444931d0ed45818e609847781582399eff0be5c089e8666475c7fb"
2022-05-20 03:53:47 +03:00
dependencies = [
"async-trait",
"coins-bip32",
"coins-bip39",
2023-04-11 01:01:36 +03:00
"elliptic-curve 0.13.4",
2022-05-20 03:53:47 +03:00
"eth-keystore",
2022-05-20 05:01:02 +03:00
"ethers-core",
2022-05-20 03:53:47 +03:00
"hex",
2022-11-12 11:24:32 +03:00
"rand",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-05-20 03:53:47 +03:00
"thiserror",
2023-04-11 01:01:36 +03:00
"tracing",
2022-05-20 03:53:47 +03:00
]
[[package]]
name = "ethers-solc"
2023-04-11 01:01:36 +03:00
version = "2.0.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "139542f51f4c405d0dd7e97c34232140a14e8744d1cf121777355567187259e4"
2022-05-20 03:53:47 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-05-20 03:53:47 +03:00
"dunce",
2022-05-20 05:01:02 +03:00
"ethers-core",
2022-05-20 03:53:47 +03:00
"getrandom",
"glob",
"hex",
"home",
"md-5",
"num_cpus",
"once_cell",
"path-slash",
"rayon",
"regex",
"semver",
"serde",
"serde_json",
"solang-parser",
"svm-rs",
"thiserror",
"tiny-keccak",
"tokio",
"tracing",
"walkdir",
2022-10-27 01:29:38 +03:00
"yansi",
2022-05-20 03:53:47 +03:00
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "event-listener"
2023-01-24 14:25:12 +03:00
version = "2.5.3"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2022-07-26 07:53:38 +03:00
2023-02-15 22:40:55 +03:00
[[package]]
name = "ewma"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f20267f3a8b678b7151c0c508002e79126144a5d47badddec7f31ddc1f4c754"
2022-04-25 22:42:51 +03:00
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2022-04-25 22:42:51 +03:00
[[package]]
name = "fastrand"
version = "1.9.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2022-04-25 22:42:51 +03:00
dependencies = [
"instant",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "fdlimit"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c4c9e43643f5a3be4ca5b67d26b98031ff9db6806c3440ae32e02e3ceac3f1b"
dependencies = [
"libc",
2022-07-14 00:49:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "ff"
2023-01-24 14:25:12 +03:00
version = "0.12.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"rand_core",
2022-04-25 22:42:51 +03:00
"subtle",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "ff"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core",
"subtle",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "fixed-hash"
2023-01-24 14:25:12 +03:00
version = "0.8.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
2022-04-25 22:42:51 +03:00
dependencies = [
"byteorder",
2022-11-12 11:24:32 +03:00
"rand",
2022-04-25 22:42:51 +03:00
"rustc-hex",
"static_assertions",
]
[[package]]
name = "fixedbitset"
2023-01-24 14:25:12 +03:00
version = "0.4.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
2022-04-25 22:42:51 +03:00
2022-07-25 21:36:15 +03:00
[[package]]
name = "flate2"
2023-01-24 14:25:12 +03:00
version = "1.0.25"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2022-07-25 21:36:15 +03:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
2022-05-03 08:13:53 +03:00
[[package]]
name = "flume"
2022-07-22 08:11:26 +03:00
version = "0.10.14"
2022-05-03 08:13:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-22 08:11:26 +03:00
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
2022-05-03 08:13:53 +03:00
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin 0.9.5",
2022-05-03 08:13:53 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-02-22 07:25:02 +03:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2022-03-05 06:46:57 +03:00
[[package]]
name = "form_urlencoded"
2022-09-09 00:01:36 +03:00
version = "1.1.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 00:01:36 +03:00
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-07-14 00:49:57 +03:00
"percent-encoding",
2022-03-05 06:46:57 +03:00
]
2022-07-07 06:22:09 +03:00
[[package]]
name = "forwarded-header-value"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9"
dependencies = [
"nonempty",
"thiserror",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
2022-08-30 23:01:42 +03:00
"winapi",
2022-07-07 00:42:31 +03:00
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "fstrings"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7845a0f15da505ac36baad0486612dab57f8b8d34e19c5470a265bbcdd572ae6"
dependencies = [
"fstrings-proc-macro",
"proc-macro-hack",
]
[[package]]
name = "fstrings-proc-macro"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63b58c0e7581dc33478a32299182cbe5ae3b8c028be26728a47fb0a113c92d9d"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-02-22 07:25:02 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "funty"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2022-03-05 06:46:57 +03:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2022-03-05 06:46:57 +03:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures-executor"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2022-03-05 06:46:57 +03:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
"num_cpus",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "futures-intrusive"
2023-01-24 14:25:12 +03:00
version = "0.4.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "a604f7a68fbf8103337523b1fadc8ade7361ee3f112f7c680ad179651616aed5"
2022-07-26 07:53:38 +03:00
dependencies = [
"futures-core",
"lock_api",
"parking_lot 0.11.2",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures-io"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2022-03-05 06:46:57 +03:00
2022-07-26 07:53:38 +03:00
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2022-05-20 03:53:47 +03:00
[[package]]
name = "futures-locks"
2023-01-24 14:25:12 +03:00
version = "0.7.1"
2022-05-20 03:53:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "45ec6fe3675af967e67c5536c0b9d44e34e6c52f86bedc4ea49c5317b8e94d06"
2022-05-20 03:53:47 +03:00
dependencies = [
"futures-channel",
"futures-task",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures-macro"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 2.0.13",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "futures-sink"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures-task"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2022-03-05 06:46:57 +03:00
2022-04-24 21:56:46 +03:00
[[package]]
name = "futures-timer"
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
2023-04-11 01:01:36 +03:00
dependencies = [
"gloo-timers",
"send_wrapper 0.4.0",
]
2022-04-24 21:56:46 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "futures-util"
2023-04-05 22:30:52 +03:00
version = "0.3.28"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2022-03-05 06:46:57 +03:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "generic-array"
2022-10-27 01:29:38 +03:00
version = "0.14.6"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2022-03-05 06:46:57 +03:00
dependencies = [
"typenum",
"version_check",
2023-04-11 01:01:36 +03:00
"zeroize",
2022-03-05 06:46:57 +03:00
]
2023-01-24 11:05:31 +03:00
[[package]]
name = "gethostname"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a329e22866dd78b35d2c639a4a23d7b950aeae300dfd79f4fb19f74055c2404"
dependencies = [
"libc",
"windows",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "getrandom"
2023-01-24 14:25:12 +03:00
version = "0.2.8"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"js-sys",
2022-03-05 06:46:57 +03:00
"libc",
2023-01-24 14:25:12 +03:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-04-25 22:42:51 +03:00
"wasm-bindgen",
2022-03-05 06:46:57 +03:00
]
2022-05-16 08:16:32 +03:00
[[package]]
name = "gimli"
2023-02-25 11:47:16 +03:00
version = "0.27.2"
2022-05-16 08:16:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
2022-05-16 08:16:32 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "glob"
2023-01-07 03:01:10 +03:00
version = "0.3.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-07 03:01:10 +03:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2022-04-25 22:42:51 +03:00
2023-04-11 01:01:36 +03:00
[[package]]
name = "gloo-timers"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
dependencies = [
"futures-channel",
"futures-core",
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "go-parse-duration"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "558b88954871f5e5b2af0e62e2e176c8bde7a6c2c4ed41b13d138d96da2e2cbd"
2022-07-14 00:49:57 +03:00
[[package]]
name = "group"
2023-01-24 14:25:12 +03:00
version = "0.12.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"ff 0.12.1",
"rand_core",
"subtle",
]
[[package]]
name = "group"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff 0.13.0",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-04-25 22:42:51 +03:00
"subtle",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "h2"
2023-03-10 20:45:47 +03:00
version = "0.3.16"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 20:45:47 +03:00
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
2022-03-05 06:46:57 +03:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
2022-10-27 01:29:38 +03:00
"tokio-util",
2022-03-05 06:46:57 +03:00
"tracing",
]
2022-08-12 22:07:14 +03:00
[[package]]
name = "handlebars"
2022-12-22 23:04:58 +03:00
version = "4.3.6"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-22 23:04:58 +03:00
checksum = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a"
2022-08-12 22:07:14 +03:00
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
"thiserror",
]
[[package]]
name = "hash32"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
dependencies = [
"byteorder",
]
[[package]]
name = "hashbrown"
2022-07-19 04:31:12 +03:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-19 04:31:12 +03:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
dependencies = [
2022-11-11 21:40:52 +03:00
"ahash 0.7.6",
]
[[package]]
name = "hashbrown"
2023-01-15 23:02:33 +03:00
version = "0.13.2"
2022-11-11 21:40:52 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-15 23:02:33 +03:00
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2022-11-11 21:40:52 +03:00
dependencies = [
"ahash 0.8.3",
2022-07-23 02:26:04 +03:00
"serde",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "hashers"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2bca93b15ea5a746f220e56587f71e73c6165eab783df9e26590069953e3c30"
dependencies = [
"fxhash",
]
[[package]]
name = "hashlink"
2023-01-24 14:25:12 +03:00
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
dependencies = [
2022-11-11 21:40:52 +03:00
"hashbrown 0.12.3",
]
2022-09-09 00:01:36 +03:00
[[package]]
name = "hdrhistogram"
2022-10-11 08:13:00 +03:00
version = "7.5.2"
2022-09-09 00:01:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-11 08:13:00 +03:00
checksum = "7f19b9f54f7c7f55e31401bb647626ce0cf0f67b0004982ce815b3ee72a02aa8"
2022-09-09 00:01:36 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"base64 0.13.1",
2022-09-09 00:01:36 +03:00
"byteorder",
"crossbeam-channel",
"flate2",
2023-03-20 14:22:30 +03:00
"nom",
2022-09-09 00:01:36 +03:00
"num-traits",
]
2022-08-13 00:41:11 +03:00
[[package]]
name = "headers"
2023-01-24 14:25:12 +03:00
version = "0.3.8"
2022-08-13 00:41:11 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
2022-08-13 00:41:11 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"base64 0.13.1",
2022-08-13 00:41:11 +03:00
"bitflags",
"bytes",
"headers-core",
"http",
"httpdate",
"mime",
2023-01-24 14:25:12 +03:00
"sha1",
2022-08-13 00:41:11 +03:00
]
[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
"http",
]
[[package]]
name = "heapless"
version = "0.7.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db04bc24a18b9ea980628ecf00e6c0264f3c1426dac36c00cb49b6fbad8b0743"
dependencies = [
"atomic-polyfill",
"hash32",
"rustc_version",
"spin 0.9.5",
"stable_deref_trait",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "heck"
version = "0.4.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2022-07-26 07:53:38 +03:00
dependencies = [
"unicode-segmentation",
]
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
2022-04-25 22:42:51 +03:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "home"
2022-10-27 01:29:38 +03:00
version = "0.5.4"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
2022-10-25 00:07:29 +03:00
[[package]]
name = "hostname"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
dependencies = [
"libc",
"match_cfg",
"winapi",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "http"
2023-02-25 11:47:16 +03:00
version = "0.2.9"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2022-03-05 06:46:57 +03:00
dependencies = [
"bytes",
"fnv",
"itoa",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "http-body"
2022-05-28 07:25:55 +03:00
version = "0.4.5"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-28 07:25:55 +03:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2022-03-05 06:46:57 +03:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "http-range-header"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
2022-03-05 06:46:57 +03:00
[[package]]
name = "httparse"
2023-01-24 14:25:12 +03:00
version = "1.8.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2022-03-05 06:46:57 +03:00
[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
2022-11-12 11:24:32 +03:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2022-03-05 06:46:57 +03:00
[[package]]
name = "hyper"
2023-02-25 11:47:16 +03:00
version = "0.14.24"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "5e011372fa0b68db8350aa7a248930ecc7839bf46d8485577d69f117a75f164c"
2022-03-05 06:46:57 +03:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
2022-03-05 06:46:57 +03:00
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "hyper-rustls"
2023-01-24 14:25:12 +03:00
version = "0.23.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c"
2022-04-25 22:42:51 +03:00
dependencies = [
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
[[package]]
name = "hyper-timeout"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
dependencies = [
"hyper",
"pin-project-lite",
"tokio",
"tokio-io-timeout",
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2022-08-21 11:30:43 +03:00
[[package]]
name = "iana-time-zone"
2023-01-24 14:25:12 +03:00
version = "0.1.53"
2022-08-21 11:30:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
2022-08-21 11:30:43 +03:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
2023-01-24 14:25:12 +03:00
"iana-time-zone-haiku",
2022-08-21 11:30:43 +03:00
"js-sys",
"wasm-bindgen",
2022-08-30 23:01:42 +03:00
"winapi",
2022-08-21 11:30:43 +03:00
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
"cxx",
"cxx-build",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "idna"
2022-09-09 00:01:36 +03:00
version = "0.3.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 00:01:36 +03:00
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
2022-04-25 22:42:51 +03:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "impl-codec"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f"
dependencies = [
"parity-scale-codec",
]
[[package]]
name = "impl-rlp"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808"
dependencies = [
"rlp",
]
[[package]]
name = "impl-serde"
2023-01-24 14:25:12 +03:00
version = "0.4.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ebc88fc67028ae3db0c853baa36269d398d5f45b6982f95549ff5def78c935cd"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde",
]
[[package]]
name = "impl-trait-for-tuples"
version = "0.2.2"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "11d7a9f6330b71fea57921c9b61c47ee6e84f72d394754eff6163ae67e7395eb"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2022-03-05 06:46:57 +03:00
[[package]]
name = "indexmap"
2023-01-24 14:25:12 +03:00
version = "1.9.2"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-11-11 21:40:52 +03:00
"hashbrown 0.12.3",
2022-03-05 06:46:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "indicatif"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
dependencies = [
2023-01-24 14:25:12 +03:00
"console 0.15.5",
2022-04-25 22:42:51 +03:00
"lazy_static",
"number_prefix",
"regex",
]
[[package]]
name = "influxdb2"
2023-04-11 00:27:06 +03:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 00:27:06 +03:00
checksum = "b1b8812dff6d6d39dd8a8aec9771fe9639d6546e47a356fea5c12ff7f2f25359"
dependencies = [
"base64 0.13.1",
"bytes",
"chrono",
"csv",
"dotenv",
"fallible-iterator",
"futures",
"go-parse-duration",
"influxdb2-derive",
"influxdb2-structmap",
2023-03-20 14:22:30 +03:00
"nom",
"opentelemetry",
"ordered-float",
"parking_lot 0.11.2",
"reqwest",
"serde",
"serde_json",
"serde_qs",
"smallvec",
"snafu",
"tempfile",
"tracing",
"tracing-subscriber 0.2.25",
"url",
]
[[package]]
name = "influxdb2-derive"
2023-03-20 14:22:30 +03:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-20 14:22:30 +03:00
checksum = "990f899841aa30130fc06f7938e3cc2cbc3d5b92c03fd4b5d79a965045abcf16"
dependencies = [
"itertools",
"proc-macro2",
"quote",
"regex",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
]
[[package]]
name = "influxdb2-structmap"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1408e712051787357e99ff732e44e8833e79cea0fabc9361018abfbff72b6265"
dependencies = [
"chrono",
"num-traits",
"ordered-float",
]
2022-10-27 01:29:38 +03:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
2023-04-11 01:01:36 +03:00
"generic-array",
2022-10-27 01:29:38 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "io-lifetimes"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1abeb7a0dd0f8181267ff8adc397075586500b81b28a73e8a0208b00fc170fb3"
dependencies = [
"libc",
"windows-sys 0.45.0",
]
[[package]]
name = "io-uring"
version = "0.5.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41c85eff7f7c8d3ab8c7ec87313c0c194bbaf4371bb7d40f80293ba01bce8264"
dependencies = [
"bitflags",
"libc",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "ipnet"
2023-04-05 22:30:52 +03:00
version = "2.7.2"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f"
2022-03-05 06:46:57 +03:00
2022-08-03 03:27:26 +03:00
[[package]]
name = "iri-string"
version = "0.6.0"
2022-08-03 03:27:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0586ad318a04c73acdbad33f67969519b5452c80770c4c72059a686da48a7e"
2022-08-03 03:27:26 +03:00
dependencies = [
"memchr",
"serde",
2022-08-03 03:27:26 +03:00
]
[[package]]
name = "is-terminal"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22e18b0a45d56fe973d6db23972bf5bc46f988a4a2385deac9cc29572f09daef"
dependencies = [
"hermit-abi 0.3.1",
"io-lifetimes",
2023-04-11 01:01:36 +03:00
"rustix 0.36.8",
"windows-sys 0.45.0",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "itertools"
2022-10-27 00:39:26 +03:00
version = "0.10.5"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 00:39:26 +03:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2022-04-25 22:42:51 +03:00
dependencies = [
"either",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "itoa"
2023-01-24 14:25:12 +03:00
version = "1.0.5"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
2022-03-05 06:46:57 +03:00
[[package]]
2022-07-25 21:36:15 +03:00
name = "jobserver"
2023-03-10 20:45:47 +03:00
version = "0.1.26"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 20:45:47 +03:00
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-07-25 21:36:15 +03:00
"libc",
2022-03-05 06:46:57 +03:00
]
2022-07-14 00:49:57 +03:00
[[package]]
2022-07-25 21:36:15 +03:00
name = "js-sys"
2023-02-25 11:47:16 +03:00
version = "0.3.61"
2022-07-14 00:49:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "445dde2150c55e483f3d8416706b97ec8e8237c307e5b7b4b8dd15e6af2a0730"
2022-07-14 00:49:57 +03:00
dependencies = [
2022-07-25 21:36:15 +03:00
"wasm-bindgen",
2022-07-14 00:49:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "k256"
2023-01-24 14:25:12 +03:00
version = "0.11.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "72c1e0b51e7ec0a97369623508396067a486bd0cbed95a2659a4b863d28cfc8b"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2023-04-11 01:01:36 +03:00
"ecdsa 0.14.8",
"elliptic-curve 0.12.3",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
"sha3",
2022-04-25 22:42:51 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "k256"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc"
dependencies = [
"cfg-if",
"ecdsa 0.16.6",
"elliptic-curve 0.13.4",
"once_cell",
"sha2 0.10.6",
"signature 2.1.0",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "keccak"
2023-01-24 14:25:12 +03:00
version = "0.1.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "3afef3b6eff9ce9d8ff9b3601125eec7f0c8cbac7abd14f355d053fa56c98768"
dependencies = [
"cpufeatures",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "lalrpop"
version = "0.19.8"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823"
2022-04-25 22:42:51 +03:00
dependencies = [
"ascii-canvas",
"atty",
"bit-set",
"diff",
"ena",
"itertools",
"lalrpop-util",
"petgraph",
"pico-args",
"regex",
"regex-syntax",
"string_cache",
"term",
"tiny-keccak",
"unicode-xid",
]
[[package]]
name = "lalrpop-util"
version = "0.19.8"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4"
2022-04-25 22:42:51 +03:00
dependencies = [
"regex",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2022-07-26 07:53:38 +03:00
dependencies = [
"spin 0.5.2",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "libc"
2023-04-11 00:27:06 +03:00
version = "0.2.140"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 00:27:06 +03:00
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
2022-07-26 07:53:38 +03:00
[[package]]
name = "libm"
2023-01-24 14:25:12 +03:00
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
2023-03-03 04:39:50 +03:00
[[package]]
name = "libz-sys"
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "link-cplusplus"
version = "1.0.8"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
dependencies = [
"cc",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "linux-raw-sys"
2023-01-24 14:25:12 +03:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
2023-04-11 01:01:36 +03:00
[[package]]
name = "linux-raw-sys"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f"
2022-03-05 06:46:57 +03:00
[[package]]
name = "lock_api"
2023-01-24 14:25:12 +03:00
version = "0.4.9"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-03-05 06:46:57 +03:00
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
]
2022-10-25 00:07:29 +03:00
[[package]]
name = "match_cfg"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
[[package]]
name = "matchers"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1"
dependencies = [
"regex-automata",
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
[[package]]
name = "matchit"
2022-12-14 05:13:23 +03:00
version = "0.7.0"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-14 05:13:23 +03:00
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
2022-05-17 19:23:27 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "md-5"
2022-10-27 01:29:38 +03:00
version = "0.10.5"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "memchr"
version = "2.5.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "memoffset"
2023-01-24 14:25:12 +03:00
version = "0.7.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-04-25 22:42:51 +03:00
]
2022-07-26 03:38:00 +03:00
[[package]]
2022-07-26 07:53:38 +03:00
name = "migration"
2023-04-18 20:36:53 +03:00
version = "0.19.0"
2022-07-26 03:38:00 +03:00
dependencies = [
2022-07-26 07:53:38 +03:00
"sea-orm-migration",
2022-10-10 07:15:07 +03:00
"tokio",
2022-07-26 03:38:00 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "mime"
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2022-07-26 07:53:38 +03:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2022-05-16 08:16:32 +03:00
[[package]]
name = "miniz_oxide"
2023-01-24 14:25:12 +03:00
version = "0.6.2"
2022-05-16 08:16:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2022-05-16 08:16:32 +03:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
version = "0.7.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "mio"
2023-02-25 11:47:16 +03:00
version = "0.8.6"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9"
2022-03-05 06:46:57 +03:00
dependencies = [
"libc",
"log",
2022-04-24 10:26:00 +03:00
"wasi 0.11.0+wasi-snapshot-preview1",
2023-02-25 11:47:16 +03:00
"windows-sys 0.45.0",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi",
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "moka"
2023-04-05 22:30:52 +03:00
version = "0.10.2"
2022-09-05 06:40:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "e0d3b8e76a2e4b17de765db9432e377a171c42fbe0512b8bc860ff1bfe2e273b"
2022-09-05 06:40:13 +03:00
dependencies = [
2022-09-05 08:53:58 +03:00
"async-io",
"async-lock",
2022-09-05 06:40:13 +03:00
"crossbeam-channel",
"crossbeam-epoch",
"crossbeam-utils",
2022-09-05 08:53:58 +03:00
"futures-util",
2022-09-05 06:40:13 +03:00
"num_cpus",
"once_cell",
"parking_lot 0.12.1",
"rustc_version",
2022-09-05 06:40:13 +03:00
"scheduled-thread-pool",
"skeptic",
"smallvec",
"tagptr",
"thiserror",
"triomphe",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-09-05 06:40:13 +03:00
]
2022-05-03 08:13:53 +03:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
2022-07-26 07:53:38 +03:00
[[package]]
name = "nom"
2023-01-24 14:25:12 +03:00
version = "7.1.3"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2022-07-26 07:53:38 +03:00
dependencies = [
"memchr",
"minimal-lexical",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "nom8"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8"
dependencies = [
"memchr",
]
2022-07-07 06:22:09 +03:00
[[package]]
name = "nonempty"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7"
[[package]]
name = "ntapi"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
dependencies = [
"winapi",
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2022-07-09 05:33:53 +03:00
[[package]]
name = "num"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-07-09 05:33:53 +03:00
"num-integer",
"num-traits",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "num-bigint-dig"
2023-01-24 14:25:12 +03:00
version = "0.8.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905"
2022-07-26 07:53:38 +03:00
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
2022-11-12 11:24:32 +03:00
"rand",
2022-07-26 07:53:38 +03:00
"smallvec",
"zeroize",
]
2022-07-09 05:33:53 +03:00
[[package]]
name = "num-complex"
2023-01-24 14:25:12 +03:00
version = "0.4.3"
2022-07-09 05:33:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
2022-07-09 05:33:53 +03:00
dependencies = [
"num-traits",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "num-integer"
version = "0.1.45"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-04-25 22:42:51 +03:00
"num-traits",
]
2022-07-09 05:33:53 +03:00
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-07-09 05:33:53 +03:00
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-07-09 05:33:53 +03:00
"num-bigint",
"num-integer",
"num-traits",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "num-traits"
version = "0.2.15"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-07-26 07:53:38 +03:00
"libm",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "num_cpus"
2023-01-24 14:25:12 +03:00
version = "1.15.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"hermit-abi 0.2.6",
2022-04-25 22:42:51 +03:00
"libc",
]
2023-03-03 04:39:50 +03:00
[[package]]
name = "num_enum"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
dependencies = [
"proc-macro-crate 1.3.0",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-03-03 04:39:50 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2022-05-16 08:16:32 +03:00
[[package]]
name = "object"
2023-01-24 14:25:12 +03:00
version = "0.30.3"
2022-05-16 08:16:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
2022-05-16 08:16:32 +03:00
dependencies = [
"memchr",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "once_cell"
version = "1.17.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2022-04-25 22:42:51 +03:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2022-10-27 01:29:38 +03:00
[[package]]
name = "open-fastrlp"
2023-01-24 14:25:12 +03:00
version = "0.1.4"
2022-10-27 01:29:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce"
2022-10-27 01:29:38 +03:00
dependencies = [
2023-03-20 14:22:30 +03:00
"arrayvec",
2023-04-11 01:01:36 +03:00
"auto_impl",
2022-10-27 01:29:38 +03:00
"bytes",
"ethereum-types",
"open-fastrlp-derive",
]
[[package]]
name = "open-fastrlp-derive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c"
dependencies = [
"bytes",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-10-27 01:29:38 +03:00
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "openssl"
version = "0.10.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-02-22 07:25:02 +03:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "opentelemetry"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91cea1dfd50064e52db033179952d18c770cbc5dfefc8eba45d619357ba3914"
dependencies = [
"async-trait",
"dashmap",
"fnv",
"futures",
"js-sys",
"lazy_static",
"percent-encoding",
"pin-project",
"rand",
"thiserror",
"tokio",
"tokio-stream",
]
2023-02-15 22:40:55 +03:00
[[package]]
name = "ordered-float"
2023-04-05 22:30:52 +03:00
version = "3.6.0"
2023-02-15 22:40:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "13a384337e997e6860ffbaa83708b2ef329fd8c54cb67a5f64d421e0f943254f"
2023-02-15 22:40:55 +03:00
dependencies = [
"num-traits",
]
2022-11-05 01:58:15 +03:00
[[package]]
name = "os_info"
2023-02-09 22:56:58 +03:00
version = "3.6.0"
2022-11-05 01:58:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-09 22:56:58 +03:00
checksum = "5c424bc68d15e0778838ac013b5b3449544d8133633d8016319e7e05a820b8c0"
2022-11-05 01:58:15 +03:00
dependencies = [
"log",
"serde",
"winapi",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "os_str_bytes"
2023-01-24 14:25:12 +03:00
version = "6.4.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
2022-04-25 22:42:51 +03:00
2022-07-26 07:53:38 +03:00
[[package]]
name = "ouroboros"
version = "0.15.6"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db"
2022-07-26 07:53:38 +03:00
dependencies = [
"aliasable",
"ouroboros_macro",
]
[[package]]
name = "ouroboros_macro"
version = "0.15.6"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7"
2022-07-26 07:53:38 +03:00
dependencies = [
"Inflector",
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "owo-colors"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2386b4ebe91c2f7f51082d4cefa145d030e33a1842a96b12e4885cc3c01f7a55"
2023-01-24 11:05:31 +03:00
[[package]]
name = "pagerduty-rs"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd10bab2b6df910bbe6c4987d76aa4221235103d9a9c000cfabcee6a6abc8f7a"
dependencies = [
"reqwest",
"serde",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2023-01-24 11:05:31 +03:00
"url",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "parity-scale-codec"
version = "3.4.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "637935964ff85a605d114591d4d2c13c5d1ba2806dae97cea6bf180238a749ac"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-03-20 14:22:30 +03:00
"arrayvec",
2023-01-24 14:25:12 +03:00
"bitvec 1.0.1",
2022-04-25 22:42:51 +03:00
"byte-slice-cast",
"impl-trait-for-tuples",
"parity-scale-codec-derive",
"serde",
]
[[package]]
name = "parity-scale-codec-derive"
2023-01-24 14:25:12 +03:00
version = "3.1.4"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "86b26a931f824dd4eca30b3e43bb4f31cd5f0d3a403c5f5ff27106b805bfde7b"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"proc-macro-crate 1.3.0",
2022-04-25 22:42:51 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-25 22:42:51 +03:00
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
2022-04-25 22:42:51 +03:00
[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
2023-01-24 14:25:12 +03:00
"parking_lot_core 0.8.6",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "parking_lot"
2022-06-03 00:48:49 +03:00
version = "0.12.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-03 00:48:49 +03:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2022-04-25 22:42:51 +03:00
dependencies = [
"lock_api",
2023-02-25 11:47:16 +03:00
"parking_lot_core 0.9.7",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "parking_lot_core"
2023-01-24 14:25:12 +03:00
version = "0.8.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"instant",
"libc",
2023-04-11 01:01:36 +03:00
"redox_syscall 0.2.16",
2022-04-25 22:42:51 +03:00
"smallvec",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "parking_lot_core"
2023-02-25 11:47:16 +03:00
version = "0.9.7"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-05-16 08:16:32 +03:00
"backtrace",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"libc",
2022-05-16 08:16:32 +03:00
"petgraph",
2023-04-11 01:01:36 +03:00
"redox_syscall 0.2.16",
2022-04-25 22:42:51 +03:00
"smallvec",
2022-05-16 08:16:32 +03:00
"thread-id",
2023-02-25 11:47:16 +03:00
"windows-sys 0.45.0",
2022-03-05 06:46:57 +03:00
]
2022-04-24 21:56:46 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "password-hash"
2022-07-25 21:36:15 +03:00
version = "0.4.2"
2022-04-24 21:56:46 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
2022-04-25 22:42:51 +03:00
dependencies = [
"base64ct",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-04-25 22:42:51 +03:00
"subtle",
]
2022-04-24 21:56:46 +03:00
2022-07-26 07:53:38 +03:00
[[package]]
name = "paste"
2023-01-24 14:25:12 +03:00
version = "1.0.11"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
2022-07-26 07:53:38 +03:00
2022-04-24 21:56:46 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "path-slash"
2022-10-27 01:29:38 +03:00
version = "0.2.1"
2022-04-24 21:56:46 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "1e91099d4268b0e11973f036e885d652fb0b21fedcf69738c627f94db6a44f42"
2022-04-24 21:56:46 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "pbkdf2"
2022-07-25 21:36:15 +03:00
version = "0.11.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-07-25 21:36:15 +03:00
"hmac",
2023-01-24 14:25:12 +03:00
"password-hash",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-03-05 06:46:57 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "pbkdf2"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31"
dependencies = [
"digest 0.10.6",
"hmac",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "pem-rfc7468"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01de5d978f34aa4b2296576379fcc416034702fd94117c56ffd8a1a767cefb30"
dependencies = [
"base64ct",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "percent-encoding"
2022-09-09 00:01:36 +03:00
version = "2.2.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 00:01:36 +03:00
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
2022-03-05 06:46:57 +03:00
2022-08-12 22:07:14 +03:00
[[package]]
name = "pest"
version = "2.5.5"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "028accff104c4e513bad663bbcd2ad7cfd5304144404c31ed0a77ac103d00660"
2022-08-12 22:07:14 +03:00
dependencies = [
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.5.5"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ac3922aac69a40733080f53c1ce7f91dcf57e1a5f6c52f421fadec7fbdc4b69"
2022-08-12 22:07:14 +03:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.5.5"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d06646e185566b5961b4058dd107e0a7f56e77c3f484549fb119867773c0f202"
2022-08-12 22:07:14 +03:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-08-12 22:07:14 +03:00
]
[[package]]
name = "pest_meta"
version = "2.5.5"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6f60b2ba541577e2a0c307c8f39d1439108120eb7903adeb6497fa880c59616"
2022-08-12 22:07:14 +03:00
dependencies = [
"once_cell",
"pest",
2023-01-24 14:25:12 +03:00
"sha2 0.10.6",
2022-08-12 22:07:14 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "petgraph"
2023-02-25 11:47:16 +03:00
version = "0.6.3"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
2022-04-25 22:42:51 +03:00
dependencies = [
"fixedbitset",
"indexmap",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "pharos"
version = "0.5.3"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"futures",
"rustc_version",
2022-03-05 06:46:57 +03:00
]
[[package]]
2022-04-25 22:42:51 +03:00
name = "phf"
2023-04-11 01:01:36 +03:00
version = "0.11.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
2022-04-25 22:42:51 +03:00
dependencies = [
"phf_macros",
2023-04-11 01:01:36 +03:00
"phf_shared 0.11.1",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "phf_generator"
2023-04-11 01:01:36 +03:00
version = "0.11.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
2022-03-05 06:46:57 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"phf_shared 0.11.1",
2022-11-12 11:24:32 +03:00
"rand",
2022-03-05 06:46:57 +03:00
]
[[package]]
2022-04-25 22:42:51 +03:00
name = "phf_macros"
2023-04-11 01:01:36 +03:00
version = "0.11.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"phf_generator",
2023-04-11 01:01:36 +03:00
"phf_shared 0.11.1",
2022-04-25 22:42:51 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
[[package]]
2022-04-25 22:42:51 +03:00
name = "phf_shared"
version = "0.10.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-04-25 22:42:51 +03:00
"siphasher",
2022-03-05 06:46:57 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "phf_shared"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
dependencies = [
"siphasher",
]
2022-03-05 06:46:57 +03:00
[[package]]
2022-04-25 22:42:51 +03:00
name = "pico-args"
version = "0.4.2"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-25 22:42:51 +03:00
checksum = "db8bcd96cb740d03149cbad5518db9fd87126a10ab519c011893b1754134c468"
2022-03-05 06:46:57 +03:00
[[package]]
name = "pin-project"
2023-01-24 14:25:12 +03:00
version = "1.0.12"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
2022-03-05 06:46:57 +03:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2023-01-24 14:25:12 +03:00
version = "1.0.12"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "pin-project-lite"
2022-04-29 04:57:16 +03:00
version = "0.2.9"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 04:57:16 +03:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2022-03-05 06:46:57 +03:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2022-07-26 07:53:38 +03:00
[[package]]
name = "pkcs1"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a78f66c04ccc83dd4486fd46c33896f4e17b24a7a3a6400dedc48ed0ddd72320"
dependencies = [
"der 0.5.1",
"pkcs8 0.8.0",
"zeroize",
]
[[package]]
name = "pkcs8"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0"
dependencies = [
"der 0.5.1",
"spki 0.5.4",
"zeroize",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "pkcs8"
2022-07-25 21:36:15 +03:00
version = "0.9.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"der 0.6.1",
2022-07-26 07:53:38 +03:00
"spki 0.6.0",
2022-04-25 22:42:51 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der 0.7.3",
"spki 0.7.1",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "pkg-config"
2023-01-24 14:25:12 +03:00
version = "0.3.26"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-07-25 21:36:15 +03:00
2022-07-26 07:53:38 +03:00
[[package]]
name = "polling"
2023-01-24 14:25:12 +03:00
version = "2.5.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6"
2022-07-26 07:53:38 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"autocfg",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-07-26 07:53:38 +03:00
"libc",
"log",
"wepoll-ffi",
2023-02-25 11:47:16 +03:00
"windows-sys 0.42.0",
2022-07-26 07:53:38 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "ppv-lite86"
2023-01-24 14:25:12 +03:00
version = "0.2.17"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2023-04-11 01:01:36 +03:00
[[package]]
name = "prettyplease"
version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86"
dependencies = [
"proc-macro2",
"syn 1.0.109",
]
2023-02-03 00:44:57 +03:00
[[package]]
name = "prettytable"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46480520d1b77c9a3482d39939fcf96831537a250ec62d4fd8fbdf8e0302e781"
dependencies = [
"csv",
"encode_unicode 1.0.0",
"is-terminal",
"lazy_static",
"term",
"unicode-width",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "primitive-types"
2023-01-24 14:25:12 +03:00
version = "0.12.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66"
2022-04-25 22:42:51 +03:00
dependencies = [
"fixed-hash",
"impl-codec",
"impl-rlp",
"impl-serde",
2022-10-27 01:29:38 +03:00
"scale-info",
2022-04-25 22:42:51 +03:00
"uint",
]
[[package]]
name = "proc-macro-crate"
2023-01-24 14:25:12 +03:00
version = "0.1.5"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"toml 0.5.11",
]
[[package]]
name = "proc-macro-crate"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66618389e4ec1c7afe67d51a9bf34ff9236480f8d51e7489b7d5ab0303c13f34"
dependencies = [
"once_cell",
"toml_edit 0.18.1",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-25 22:42:51 +03: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 = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro-hack"
2023-01-24 14:25:12 +03:00
version = "0.5.20+deprecated"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "proc-macro2"
2023-04-05 22:30:52 +03:00
version = "1.0.56"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-05-20 03:53:47 +03:00
"unicode-ident",
2022-03-05 06:46:57 +03:00
]
2022-05-12 21:49:57 +03:00
[[package]]
name = "proctitle"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "924cd8a0de90723d63fed19c5035ea129913a0bc998b37686a67f1eaf6a2aab5"
dependencies = [
"lazy_static",
"libc",
2022-08-30 23:01:42 +03:00
"winapi",
2022-05-12 21:49:57 +03:00
]
[[package]]
name = "prost"
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
]
[[package]]
name = "prost-types"
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88"
dependencies = [
"prost",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "ptr_meta"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
dependencies = [
"ptr_meta_derive",
]
[[package]]
name = "ptr_meta_derive"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2023-01-24 14:25:12 +03:00
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "pulldown-cmark"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
dependencies = [
"bitflags",
"memchr",
"unicase",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "quote"
2023-04-05 22:30:52 +03:00
version = "1.0.26"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "radium"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac"
[[package]]
name = "radium"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2022-03-05 06:46:57 +03:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2022-11-12 11:24:32 +03:00
"rand_chacha",
"rand_core",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-08-16 03:33:26 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "rand_core"
2023-01-24 14:25:12 +03:00
version = "0.6.4"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-03-05 06:46:57 +03:00
dependencies = [
"getrandom",
]
2022-11-12 09:11:58 +03:00
[[package]]
name = "rand_xoshiro"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
dependencies = [
2022-11-12 11:24:32 +03:00
"rand_core",
2022-11-12 09:11:58 +03:00
]
2023-02-26 01:40:22 +03:00
[[package]]
name = "rate-counter"
version = "0.1.0"
dependencies = [
"flume",
"tokio",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "rayon"
2023-04-11 01:01:36 +03:00
version = "1.7.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2022-04-25 22:42:51 +03:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2023-04-11 01:01:36 +03:00
version = "1.11.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2022-04-25 22:42:51 +03:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2023-03-03 04:39:50 +03:00
[[package]]
name = "rdkafka"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd7c5d6d17442bcb9f943aae96d67d98c6d36af60442dd5da62aaa7fcbb25c48"
dependencies = [
"futures-channel",
"futures-util",
"libc",
"log",
"rdkafka-sys",
"serde",
"serde_derive",
"serde_json",
"slab",
"tokio",
]
[[package]]
name = "rdkafka-sys"
version = "4.3.0+1.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d222a401698c7f2010e3967353eae566d9934dcda49c29910da922414ab4e3f4"
dependencies = [
2023-04-20 01:22:27 +03:00
"cmake",
2023-03-03 04:39:50 +03:00
"libc",
"libz-sys",
"num_enum",
2023-04-20 01:22:27 +03:00
"openssl-sys",
2023-03-03 04:39:50 +03:00
"pkg-config",
2023-04-20 01:22:27 +03:00
"zstd-sys",
2023-03-03 04:39:50 +03:00
]
[[package]]
name = "redis"
2023-01-24 14:25:12 +03:00
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "aa8455fa3621f6b41c514946de66ea0531f57ca017b2e6c7cc368035ea5b46df"
dependencies = [
"async-trait",
"bytes",
"combine",
"futures-util",
"itoa",
2022-07-14 00:49:57 +03:00
"percent-encoding",
"pin-project-lite",
2022-10-27 01:29:38 +03:00
"ryu",
"tokio",
2022-10-27 01:29:38 +03:00
"tokio-util",
2022-07-14 00:49:57 +03:00
"url",
]
[[package]]
2022-09-15 20:57:24 +03:00
name = "redis-rate-limiter"
version = "0.2.0"
dependencies = [
"anyhow",
"chrono",
2022-09-14 09:18:13 +03:00
"deadpool-redis",
"tokio",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "redox_syscall"
2023-01-24 14:25:12 +03:00
version = "0.2.16"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2022-03-05 06:46:57 +03:00
dependencies = [
"bitflags",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
2023-04-11 01:01:36 +03:00
"redox_syscall 0.2.16",
2022-04-25 22:42:51 +03:00
"thiserror",
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "regex"
2023-04-05 22:30:52 +03:00
version = "1.7.3"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
2022-04-25 22:14:10 +03:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2022-05-17 19:23:27 +03:00
dependencies = [
"regex-syntax",
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "regex-syntax"
2023-04-05 22:30:52 +03:00
version = "0.6.29"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-04-25 22:14:10 +03:00
2023-01-24 14:25:12 +03:00
[[package]]
name = "rend"
version = "0.4.0"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
2023-01-24 14:25:12 +03:00
dependencies = [
"bytecheck",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "reqwest"
2023-04-05 22:30:52 +03:00
version = "0.11.16"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "27b71749df584b7f4cac2c426c127a7c785a5106cc98f7a8feb044115f0fa254"
2022-03-05 06:46:57 +03:00
dependencies = [
"base64 0.21.0",
2022-03-05 06:46:57 +03:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
2022-04-25 22:42:51 +03:00
"hyper-rustls",
2023-02-22 07:25:02 +03:00
"hyper-tls",
2022-03-05 06:46:57 +03:00
"ipnet",
"js-sys",
"log",
"mime",
2023-02-22 07:25:02 +03:00
"native-tls",
"once_cell",
2022-07-14 00:49:57 +03:00
"percent-encoding",
2022-03-05 06:46:57 +03:00
"pin-project-lite",
2022-04-25 22:42:51 +03:00
"rustls",
"rustls-pemfile",
2022-03-05 06:46:57 +03:00
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2023-02-22 07:25:02 +03:00
"tokio-native-tls",
2022-04-25 22:42:51 +03:00
"tokio-rustls",
"tokio-util",
"tower-service",
2022-07-14 00:49:57 +03:00
"url",
2022-03-05 06:46:57 +03:00
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-streams",
2022-03-05 06:46:57 +03:00
"web-sys",
2022-04-25 22:42:51 +03:00
"webpki-roots",
2022-03-05 06:46:57 +03:00
"winreg",
]
2022-09-14 09:18:13 +03:00
[[package]]
name = "retain_mut"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
2022-04-25 22:42:51 +03:00
[[package]]
name = "rfc6979"
2023-01-24 14:25:12 +03:00
version = "0.3.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"crypto-bigint 0.4.9",
2022-07-25 21:36:15 +03:00
"hmac",
2022-04-25 22:42:51 +03:00
"zeroize",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "rfc6979"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
"hmac",
"subtle",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
2022-05-03 08:13:53 +03:00
"spin 0.5.2",
2022-04-25 22:42:51 +03:00
"untrusted",
"web-sys",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
2022-07-25 21:36:15 +03:00
name = "ripemd"
2023-01-24 14:25:12 +03:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
dependencies = [
"digest 0.10.6",
]
[[package]]
name = "rkyv"
version = "0.7.40"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c30f1d45d9aa61cbc8cd1eb87705470892289bb2d01943e7803b873a57404dc3"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"bytecheck",
"hashbrown 0.12.3",
"ptr_meta",
"rend",
"rkyv_derive",
"seahash",
]
[[package]]
name = "rkyv_derive"
version = "0.7.40"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff26ed6c7c4dfc2aa9480b86a60e3c7233543a270a680e10758a507c5a4ce476"
2023-01-24 14:25:12 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "rlp"
2023-01-24 14:25:12 +03:00
version = "0.5.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec"
2022-04-25 22:42:51 +03:00
dependencies = [
"bytes",
2023-04-11 01:01:36 +03:00
"rlp-derive",
2022-04-25 22:42:51 +03:00
"rustc-hex",
]
[[package]]
name = "rlp-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e33d7b2abe0c340d8797fe2907d3f20d3b5ea5908683618bfe80df7f621f672a"
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-25 22:42:51 +03:00
]
2023-03-03 04:39:50 +03:00
[[package]]
name = "rmp"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f"
dependencies = [
"byteorder",
"num-traits",
"paste",
]
[[package]]
name = "rmp-serde"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e"
dependencies = [
"byteorder",
"rmp",
"serde",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "rsa"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cf22754c49613d2b3b119f0e5d46e34a2c628a937e3024b8762de4e7d8c710b"
dependencies = [
"byteorder",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-07-26 07:53:38 +03:00
"num-bigint-dig",
"num-integer",
"num-iter",
"num-traits",
"pkcs1",
"pkcs8 0.8.0",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-07-26 07:53:38 +03:00
"smallvec",
"subtle",
"zeroize",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "rust_decimal"
version = "1.28.1"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13cf35f7140155d02ba4ec3294373d513a3c7baa8364c162b030e33c61520a8"
2022-07-25 21:36:15 +03:00
dependencies = [
2023-03-20 14:22:30 +03:00
"arrayvec",
2023-01-24 14:25:12 +03:00
"borsh",
"bytecheck",
"byteorder",
"bytes",
2022-07-25 21:36:15 +03:00
"num-traits",
2023-01-24 14:25:12 +03:00
"rand",
"rkyv",
2022-07-25 21:36:15 +03:00
"serde",
2023-01-24 14:25:12 +03:00
"serde_json",
2022-07-25 21:36:15 +03:00
]
2022-05-16 08:16:32 +03:00
[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2022-05-02 23:32:55 +03:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2022-04-25 22:42:51 +03:00
[[package]]
name = "rustc-hex"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6"
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "rustix"
version = "0.36.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43abb88211988493c1abb44a70efa56ff0ce98f233b7b276146f1f3f7ba9644"
dependencies = [
"bitflags",
2023-04-11 01:01:36 +03:00
"errno 0.2.8",
"io-lifetimes",
"libc",
"linux-raw-sys 0.1.4",
"windows-sys 0.45.0",
]
[[package]]
name = "rustix"
version = "0.37.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2aae838e49b3d63e9274e1c01833cc8139d3fec468c3b84688c628f44b1ae11d"
dependencies = [
"bitflags",
"errno 0.3.1",
"io-lifetimes",
"libc",
2023-04-11 01:01:36 +03:00
"linux-raw-sys 0.3.1",
"windows-sys 0.45.0",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "rustls"
2023-01-24 14:25:12 +03:00
version = "0.20.8"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-04-25 22:42:51 +03:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
2023-01-24 14:25:12 +03:00
version = "1.0.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"base64 0.21.0",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "rustversion"
2023-01-24 14:25:12 +03:00
version = "1.0.11"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70"
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "ryu"
2023-01-24 14:25:12 +03:00
version = "1.0.12"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "salsa20"
2022-10-27 01:29:38 +03:00
version = "0.10.2"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-10-27 01:29:38 +03:00
"cipher 0.4.3",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2022-10-27 01:29:38 +03:00
[[package]]
name = "scale-info"
2023-01-24 14:25:12 +03:00
version = "2.3.1"
2022-10-27 01:29:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "001cf62ece89779fd16105b5f515ad0e5cedcd5440d3dd806bb067978e7c3608"
2022-10-27 01:29:38 +03:00
dependencies = [
"cfg-if",
"derive_more",
"parity-scale-codec",
"scale-info-derive",
]
[[package]]
name = "scale-info-derive"
2023-01-24 14:25:12 +03:00
version = "2.3.1"
2022-10-27 01:29:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "303959cf613a6f6efd19ed4b4ad5bf79966a13352716299ad532cfb115f4205c"
2022-10-27 01:29:38 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"proc-macro-crate 1.3.0",
2022-10-27 01:29:38 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-10-27 01:29:38 +03:00
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "schannel"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
dependencies = [
"windows-sys 0.42.0",
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "scheduled-thread-pool"
2023-04-05 22:30:52 +03:00
version = "0.2.7"
2022-09-05 06:40:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2022-09-05 06:40:13 +03:00
dependencies = [
"parking_lot 0.12.1",
]
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2022-03-05 06:46:57 +03:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2023-01-24 14:25:12 +03:00
[[package]]
name = "scratch"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2"
2022-04-25 22:42:51 +03:00
[[package]]
name = "scrypt"
2022-10-27 01:29:38 +03:00
version = "0.10.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "9f9e24d2b632954ded8ab2ef9fea0a0c769ea56ea98bddbafbad22caeeadf45d"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-07-25 21:36:15 +03:00
"hmac",
2023-04-11 01:01:36 +03:00
"pbkdf2 0.11.0",
2022-04-25 22:42:51 +03:00
"salsa20",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "sea-orm"
2023-04-05 22:30:52 +03:00
version = "0.11.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "c5d875e2fcd965320e50066028ac0b4877ff07edbb734a6ddfeff48a87dbab38"
2022-07-26 07:53:38 +03:00
dependencies = [
"async-stream",
"async-trait",
2023-02-08 22:11:16 +03:00
"bigdecimal",
2022-07-26 07:53:38 +03:00
"chrono",
"futures",
"log",
"ouroboros",
"rust_decimal",
"sea-orm-macros",
"sea-query",
2022-10-25 06:41:59 +03:00
"sea-query-binder",
2022-07-26 07:53:38 +03:00
"sea-strum",
"serde",
"serde_json",
"sqlx",
2022-10-25 06:41:59 +03:00
"thiserror",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-07-26 07:53:38 +03:00
"tracing",
"url",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "sea-orm-cli"
2023-04-05 22:30:52 +03:00
version = "0.11.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "6ead9f7dac975f10447f17d08edbb2046daa087b5e0b50bbf8211f303459078c"
2022-07-26 07:53:38 +03:00
dependencies = [
"chrono",
2022-09-05 08:53:58 +03:00
"clap",
2022-10-31 22:34:29 +03:00
"dotenvy",
2022-07-26 07:53:38 +03:00
"regex",
"sea-schema",
"tracing",
"tracing-subscriber 0.3.16",
2022-07-26 07:53:38 +03:00
"url",
]
[[package]]
name = "sea-orm-macros"
2023-04-05 22:30:52 +03:00
version = "0.11.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "f9b593e9c0cdbb18cafd4da7b92e67a9c2d9892934f3a2d8bbac73d5ba4a98a1"
2022-07-26 07:53:38 +03:00
dependencies = [
"bae",
"heck 0.3.3",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "sea-orm-migration"
2023-04-05 22:30:52 +03:00
version = "0.11.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "edba7a6123c1035b0530deb713820688f0234431ab6c1893b14dce493ade76af"
2022-07-26 07:53:38 +03:00
dependencies = [
"async-trait",
2022-09-05 08:53:58 +03:00
"clap",
2022-10-25 06:41:59 +03:00
"dotenvy",
2023-02-08 22:11:16 +03:00
"futures",
2022-07-26 07:53:38 +03:00
"sea-orm",
"sea-orm-cli",
"sea-schema",
"tracing",
"tracing-subscriber 0.3.16",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "sea-query"
2023-02-08 22:11:16 +03:00
version = "0.28.3"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "d2fbe015dbdaa7d8829d71c1e14fb6289e928ac256b93dfda543c85cd89d6f03"
2022-07-26 07:53:38 +03:00
dependencies = [
2023-02-08 22:11:16 +03:00
"bigdecimal",
2022-07-26 07:53:38 +03:00
"chrono",
"rust_decimal",
"sea-query-derive",
"serde_json",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-07-26 07:53:38 +03:00
]
[[package]]
2022-10-25 06:41:59 +03:00
name = "sea-query-binder"
2023-02-08 22:11:16 +03:00
version = "0.3.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "03548c63aec07afd4fd190923e0160d2f2fc92def27470b54154cf232da6203b"
2022-07-26 07:53:38 +03:00
dependencies = [
2023-02-08 22:11:16 +03:00
"bigdecimal",
2022-10-25 06:41:59 +03:00
"chrono",
"rust_decimal",
"sea-query",
"serde_json",
"sqlx",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-07-26 07:53:38 +03:00
]
[[package]]
2022-10-25 06:41:59 +03:00
name = "sea-query-derive"
2023-02-08 22:11:16 +03:00
version = "0.3.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "63f62030c60f3a691f5fe251713b4e220b306e50a71e1d6f9cce1f24bb781978"
2022-07-26 07:53:38 +03:00
dependencies = [
"heck 0.4.1",
2022-07-26 07:53:38 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-10-25 06:41:59 +03:00
"thiserror",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "sea-schema"
2023-02-08 22:11:16 +03:00
version = "0.11.0"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "eeb2940bb5a10bc6cd05b450ce6cd3993e27fddd7eface2becb97fc5af3a040e"
2022-07-26 07:53:38 +03:00
dependencies = [
"futures",
"sea-query",
"sea-schema-derive",
]
[[package]]
name = "sea-schema-derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56821b7076f5096b8f726e2791ad255a99c82498e08ec477a65a96c461ff1927"
dependencies = [
"heck 0.3.3",
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
[[package]]
name = "sea-strum"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "391d06a6007842cfe79ac6f7f53911b76dfd69fc9a6769f1cf6569d12ce20e1b"
dependencies = [
"sea-strum_macros",
]
[[package]]
name = "sea-strum_macros"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69b4397b825df6ccf1e98bcdabef3bbcfc47ff5853983467850eeab878384f21"
dependencies = [
"heck 0.3.3",
"proc-macro2",
"quote",
"rustversion",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "seahash"
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2022-04-25 22:42:51 +03:00
[[package]]
name = "sec1"
2022-07-25 21:36:15 +03:00
version = "0.3.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-04-11 01:01:36 +03:00
"base16ct 0.1.1",
2023-01-24 14:25:12 +03:00
"der 0.6.1",
2023-04-11 01:01:36 +03:00
"generic-array",
2022-07-26 07:53:38 +03:00
"pkcs8 0.9.0",
2022-04-25 22:42:51 +03:00
"subtle",
"zeroize",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "sec1"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e"
dependencies = [
"base16ct 0.2.0",
"der 0.7.3",
"generic-array",
"pkcs8 0.10.2",
"subtle",
"zeroize",
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "security-framework"
version = "2.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254"
dependencies = [
"bitflags",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c9bb296072e961fcbd8853511dd39c2d8be2deb1e17c6860b1d30732b323b4"
dependencies = [
"core-foundation-sys",
"libc",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "semver"
2023-01-24 14:25:12 +03:00
version = "1.0.16"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde",
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "send_wrapper"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
2022-04-25 22:42:51 +03:00
[[package]]
name = "send_wrapper"
version = "0.6.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
2022-04-25 22:42:51 +03:00
2022-10-25 00:07:29 +03:00
[[package]]
name = "sentry"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "b5ce6d3512e2617c209ec1e86b0ca2fea06454cd34653c91092bf0f3ec41f8e3"
2022-10-25 00:07:29 +03:00
dependencies = [
"httpdate",
"reqwest",
2022-11-05 01:58:15 +03:00
"rustls",
2022-10-25 00:07:29 +03:00
"sentry-anyhow",
"sentry-backtrace",
"sentry-contexts",
"sentry-core",
2022-11-12 11:24:32 +03:00
"sentry-log",
2022-10-25 00:07:29 +03:00
"sentry-panic",
"tokio",
2022-11-05 01:58:15 +03:00
"ureq",
"webpki-roots",
2022-10-25 00:07:29 +03:00
]
[[package]]
name = "sentry-anyhow"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "2d29d7126d9f4912d817eb2ecef8c8bcb46098ddfc2a24afb7c01f6094d9894d"
2022-10-25 00:07:29 +03:00
dependencies = [
"anyhow",
"sentry-backtrace",
"sentry-core",
]
[[package]]
name = "sentry-backtrace"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "0e7fe408d4d1f8de188a9309916e02e129cbe51ca19e55badea5a64899399b1a"
2022-10-25 00:07:29 +03:00
dependencies = [
"backtrace",
"once_cell",
"regex",
"sentry-core",
]
[[package]]
name = "sentry-contexts"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "5695096a059a89973ec541062d331ff4c9aeef9c2951416c894f0fff76340e7d"
2022-10-25 00:07:29 +03:00
dependencies = [
"hostname",
"libc",
2022-11-05 01:58:15 +03:00
"os_info",
2022-10-25 00:07:29 +03:00
"rustc_version",
"sentry-core",
"uname",
]
[[package]]
name = "sentry-core"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "5b22828bfd118a7b660cf7a155002a494755c0424cebb7061e4743ecde9c7dbc"
2022-10-25 00:07:29 +03:00
dependencies = [
"once_cell",
2022-11-12 11:24:32 +03:00
"rand",
2022-10-25 00:07:29 +03:00
"sentry-types",
"serde",
"serde_json",
]
[[package]]
2022-11-12 11:24:32 +03:00
name = "sentry-log"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "bfa3a3f4477e77541c26eb84d0e355729dfa35c74c682eb8678f146db5126013"
2022-10-25 00:07:29 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"log",
2022-10-25 00:07:29 +03:00
"sentry-core",
]
[[package]]
2022-11-12 11:24:32 +03:00
name = "sentry-panic"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "1f4ced2a7a8c14899d58eec402d946f69d5ed26a3fc363a7e8b1e5cb88473a01"
2022-10-25 00:07:29 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"sentry-backtrace",
2022-10-25 00:07:29 +03:00
"sentry-core",
]
[[package]]
name = "sentry-types"
2023-02-25 11:47:16 +03:00
version = "0.30.0"
2022-10-25 00:07:29 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "360ee3270f7a4a1eee6c667f7d38360b995431598a73b740dfe420da548d9cc9"
2022-10-25 00:07:29 +03:00
dependencies = [
"debugid",
"getrandom",
"hex",
"serde",
"serde_json",
"thiserror",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-10-25 00:07:29 +03:00
"url",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-10-25 00:07:29 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "serde"
2023-04-05 22:30:52 +03:00
version = "1.0.159"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-04-05 22:30:52 +03:00
version = "1.0.159"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
2022-04-25 22:42:51 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 2.0.13",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "serde_json"
2023-04-05 22:30:52 +03:00
version = "1.0.95"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
2022-03-05 06:46:57 +03:00
dependencies = [
"itoa",
2022-03-05 06:46:57 +03:00
"ryu",
"serde",
]
2022-12-14 05:13:23 +03:00
[[package]]
name = "serde_path_to_error"
2023-01-24 14:25:12 +03:00
version = "0.1.9"
2022-12-14 05:13:23 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341"
2022-12-14 05:13:23 +03:00
dependencies = [
"serde",
]
[[package]]
name = "serde_plain"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae"
dependencies = [
"serde",
]
2022-09-09 00:01:36 +03:00
[[package]]
name = "serde_prometheus"
2023-04-05 22:30:52 +03:00
version = "0.2.2"
2022-09-09 00:01:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "6f165c1172b0be12cee1771b8d7f38ea324621693acfd3e8b8d3e1951f7df56e"
2022-09-09 00:01:36 +03:00
dependencies = [
"heapless",
2023-03-20 14:22:30 +03:00
"nom",
2022-09-09 00:01:36 +03:00
"serde",
"serde_plain",
"thiserror",
2022-09-09 00:01:36 +03:00
]
[[package]]
name = "serde_qs"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cac3f1e2ca2fe333923a1ae72caca910b98ed0630bb35ef6f8c8517d6e81afa"
dependencies = [
"percent-encoding",
"serde",
"thiserror",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "serde_spanned"
2023-01-31 02:57:06 +03:00
version = "0.6.1"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-31 02:57:06 +03:00
checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
2023-01-24 14:25:12 +03:00
dependencies = [
"serde",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
2022-03-05 06:46:57 +03:00
"ryu",
"serde",
]
2022-07-25 21:36:15 +03:00
[[package]]
name = "sha1"
2023-01-24 14:25:12 +03:00
version = "0.10.5"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-07-25 21:36:15 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-07-25 21:36:15 +03:00
"cpufeatures",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-07-25 21:36:15 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"cpufeatures",
"digest 0.9.0",
2023-04-11 01:01:36 +03:00
"opaque-debug",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "sha2"
2022-10-27 01:29:38 +03:00
version = "0.10.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-04-25 22:42:51 +03:00
"cpufeatures",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
]
2022-08-03 03:27:26 +03:00
[[package]]
name = "sha3"
2023-01-24 14:25:12 +03:00
version = "0.10.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-04-25 22:42:51 +03:00
"keccak",
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "signal-hook"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-mio"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
dependencies = [
"libc",
"mio 0.7.14",
"signal-hook",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "signal-hook-registry"
2023-02-25 11:47:16 +03:00
version = "1.4.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2022-03-05 06:46:57 +03:00
dependencies = [
"libc",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "signature"
2023-01-24 14:25:12 +03:00
version = "1.6.4"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
2022-04-25 22:42:51 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-11-12 11:24:32 +03:00
"rand_core",
2022-04-25 22:42:51 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "signature"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
dependencies = [
"digest 0.10.6",
"rand_core",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "siphasher"
version = "0.3.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
2022-08-03 03:27:26 +03:00
[[package]]
name = "siwe"
version = "0.5.0"
2022-08-03 03:27:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec4cc2eafb2354c1aeaeac5f53b7726ca4ea5ad16314a0b5ebacb6676f599c2b"
2022-08-03 03:27:26 +03:00
dependencies = [
"hex",
"http",
"iri-string",
2023-04-11 01:01:36 +03:00
"k256 0.11.6",
2022-11-12 11:24:32 +03:00
"rand",
"sha3",
2022-08-03 03:27:26 +03:00
"thiserror",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-08-03 03:27:26 +03:00
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "skeptic"
version = "0.13.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
dependencies = [
"bytecount",
"cargo_metadata 0.14.2",
"error-chain",
"glob",
"pulldown-cmark",
"tempfile",
"walkdir",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "slab"
2023-02-25 11:47:16 +03:00
version = "0.4.8"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-07-22 08:11:26 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-07-22 08:11:26 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "smallvec"
version = "1.10.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-03-05 06:46:57 +03:00
[[package]]
name = "snafu"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eab12d3c261b2308b0d80c26fffb58d17eba81a4be97890101f416b478c79ca7"
dependencies = [
"doc-comment",
"snafu-derive",
]
[[package]]
name = "snafu-derive"
version = "0.6.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1508efa03c362e23817f96cde18abed596a25219a8b2c66e8db33c03543d315b"
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "socket2"
2023-03-10 20:45:47 +03:00
version = "0.4.9"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 20:45:47 +03:00
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2022-03-05 06:46:57 +03:00
dependencies = [
"libc",
2022-08-30 23:01:42 +03:00
"winapi",
2022-03-05 06:46:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "solang-parser"
2023-04-11 01:01:36 +03:00
version = "0.2.3"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "ff87dae6cdccacdbf3b19e99b271083556e808de0f59c74a01482f64fdbc61fc"
2022-04-25 22:42:51 +03:00
dependencies = [
2022-05-20 03:53:47 +03:00
"itertools",
2022-04-25 22:42:51 +03:00
"lalrpop",
"lalrpop-util",
"phf",
"unicode-xid",
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-05-03 08:13:53 +03:00
[[package]]
name = "spin"
version = "0.9.5"
2022-05-03 08:13:53 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dccf47db1b41fa1573ed27ccf5e08e3ca771cb994f776668c5ebda893b248fc"
2022-05-03 08:13:53 +03:00
dependencies = [
"lock_api",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "spki"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27"
dependencies = [
"base64ct",
"der 0.5.1",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "spki"
2022-07-25 21:36:15 +03:00
version = "0.6.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
2022-04-25 22:42:51 +03:00
dependencies = [
"base64ct",
2023-01-24 14:25:12 +03:00
"der 0.6.1",
2022-07-26 07:53:38 +03:00
]
2023-04-11 01:01:36 +03:00
[[package]]
name = "spki"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37a5be806ab6f127c3da44b7378837ebf01dadca8510a0e572460216b228bd0e"
dependencies = [
"base64ct",
"der 0.7.3",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "sqlformat"
2023-01-24 14:25:12 +03:00
version = "0.2.1"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
2022-07-26 07:53:38 +03:00
dependencies = [
"itertools",
2023-03-20 14:22:30 +03:00
"nom",
2022-07-26 07:53:38 +03:00
"unicode_categories",
]
[[package]]
name = "sqlx"
2022-10-25 00:07:29 +03:00
version = "0.6.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-25 00:07:29 +03:00
checksum = "9249290c05928352f71c077cc44a464d880c63f26f7534728cca008e135c0428"
2022-07-26 07:53:38 +03:00
dependencies = [
"sqlx-core",
"sqlx-macros",
2022-04-25 22:42:51 +03:00
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "sqlx-core"
2022-10-25 00:07:29 +03:00
version = "0.6.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-25 00:07:29 +03:00
checksum = "dcbc16ddba161afc99e14d1713a453747a2b07fc097d2009f4c300ec99286105"
2022-07-26 07:53:38 +03:00
dependencies = [
2022-11-11 21:40:52 +03:00
"ahash 0.7.6",
2022-07-26 07:53:38 +03:00
"atoi",
2023-02-08 22:11:16 +03:00
"bigdecimal",
2022-07-26 07:53:38 +03:00
"bitflags",
"byteorder",
"bytes",
"chrono",
"crossbeam-queue",
2023-01-24 14:25:12 +03:00
"digest 0.10.6",
2022-10-25 00:07:29 +03:00
"dotenvy",
2022-07-26 07:53:38 +03:00
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive",
"futures-util",
2023-04-11 01:01:36 +03:00
"generic-array",
2022-07-26 07:53:38 +03:00
"hashlink",
"hex",
"indexmap",
"itoa",
2022-07-26 07:53:38 +03:00
"libc",
"log",
"memchr",
"num-bigint",
"once_cell",
"paste",
"percent-encoding",
2022-11-12 11:24:32 +03:00
"rand",
2022-07-26 07:53:38 +03:00
"rsa",
"rust_decimal",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
2022-10-25 00:07:29 +03:00
"sha1",
2022-10-27 01:29:38 +03:00
"sha2 0.10.6",
2022-07-26 07:53:38 +03:00
"smallvec",
"sqlformat",
"sqlx-rt",
"stringprep",
"thiserror",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-07-26 07:53:38 +03:00
"tokio-stream",
"url",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-07-26 07:53:38 +03:00
"webpki-roots",
]
[[package]]
name = "sqlx-macros"
2022-10-25 00:07:29 +03:00
version = "0.6.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-25 00:07:29 +03:00
checksum = "b850fa514dc11f2ee85be9d055c512aa866746adfacd1cb42d867d68e6a5b0d9"
2022-07-26 07:53:38 +03:00
dependencies = [
2022-10-25 00:07:29 +03:00
"dotenvy",
2022-07-26 07:53:38 +03:00
"either",
"heck 0.4.1",
2022-07-26 07:53:38 +03:00
"once_cell",
"proc-macro2",
"quote",
"serde_json",
"sqlx-core",
"sqlx-rt",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-07-26 07:53:38 +03:00
"url",
]
[[package]]
name = "sqlx-rt"
2022-10-25 00:07:29 +03:00
version = "0.6.2"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-25 00:07:29 +03:00
checksum = "24c5b2d25fa654cc5f841750b8e1cdedbe21189bf9a9382ee90bfa9dd3562396"
2022-07-26 07:53:38 +03:00
dependencies = [
"once_cell",
"tokio",
"tokio-rustls",
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2022-04-25 22:42:51 +03:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "string_cache"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
dependencies = [
"new_debug_unreachable",
"once_cell",
2022-06-03 00:48:49 +03:00
"parking_lot 0.12.1",
2023-04-11 01:01:36 +03:00
"phf_shared 0.10.0",
2022-04-25 22:42:51 +03:00
"precomputed-hash",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "stringprep"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2022-05-20 03:53:47 +03:00
[[package]]
name = "strum"
2023-01-24 14:25:12 +03:00
version = "0.24.1"
2022-05-20 03:53:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
2022-05-20 03:53:47 +03:00
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
2023-01-24 14:25:12 +03:00
version = "0.24.3"
2022-05-20 03:53:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2022-05-20 03:53:47 +03:00
dependencies = [
"heck 0.4.1",
2022-05-20 03:53:47 +03:00
"proc-macro2",
"quote",
"rustversion",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-05-20 03:53:47 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "svm-rs"
version = "0.2.20"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1b8e811a6443e8d93665a5e532efa8429ea8e2052a234a82e2cd69478913310"
2022-04-25 22:42:51 +03:00
dependencies = [
"anyhow",
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-09-05 08:53:58 +03:00
"clap",
2022-04-25 22:42:51 +03:00
"console 0.14.1",
"dialoguer",
"fs2",
"hex",
"home",
"indicatif",
"itertools",
"once_cell",
2022-11-12 11:24:32 +03:00
"rand",
2022-04-25 22:42:51 +03:00
"reqwest",
"semver",
"serde",
"serde_json",
"sha2 0.9.9",
"tempfile",
"thiserror",
"tokio",
"tracing",
2022-07-14 00:49:57 +03:00
"url",
2022-07-25 21:36:15 +03:00
"zip",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "syn"
2023-03-10 20:45:47 +03:00
version = "1.0.109"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-10 20:45:47 +03:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2022-05-20 03:53:47 +03:00
"unicode-ident",
2022-03-05 06:46:57 +03:00
]
2023-04-05 22:30:52 +03:00
[[package]]
name = "syn"
version = "2.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "sync_wrapper"
2023-02-25 11:47:16 +03:00
version = "0.1.2"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2022-05-17 19:23:27 +03:00
2022-09-05 06:40:13 +03:00
[[package]]
name = "tagptr"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2022-04-25 22:42:51 +03:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2022-03-05 06:46:57 +03:00
[[package]]
name = "tempfile"
2023-04-11 01:01:36 +03:00
version = "3.5.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
"fastrand",
2023-04-11 01:01:36 +03:00
"redox_syscall 0.3.5",
"rustix 0.37.7",
"windows-sys 0.45.0",
2022-03-05 06:46:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "term"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [
"dirs-next",
"rustversion",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "termcolor"
2023-01-24 14:25:12 +03:00
version = "1.2.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
2022-04-25 22:42:51 +03:00
dependencies = [
"winapi-util",
]
[[package]]
name = "terminal_size"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
dependencies = [
"libc",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
[[package]]
name = "textwrap"
2023-01-24 14:25:12 +03:00
version = "0.16.0"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d"
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "thiserror"
2023-01-24 14:25:12 +03:00
version = "1.0.38"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
2022-03-05 06:46:57 +03:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-01-24 14:25:12 +03:00
version = "1.0.38"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
]
2022-11-12 09:11:58 +03:00
[[package]]
name = "thread-fast-rng"
version = "0.1.0"
dependencies = [
2022-11-12 11:24:32 +03:00
"rand",
2022-11-12 09:11:58 +03:00
"rand_xoshiro",
]
2022-05-16 08:16:32 +03:00
[[package]]
name = "thread-id"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fdfe0627923f7411a43ec9ec9c39c3a9b4151be313e0922042581fb6c9b717f"
dependencies = [
"libc",
2023-04-11 01:01:36 +03:00
"redox_syscall 0.2.16",
2022-08-30 23:01:42 +03:00
"winapi",
2022-05-16 08:16:32 +03:00
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "thread_local"
version = "1.1.7"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-04-25 22:14:10 +03:00
dependencies = [
"cfg-if",
2022-04-25 22:14:10 +03:00
"once_cell",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "time"
2023-01-24 14:25:12 +03:00
version = "0.1.45"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2022-07-26 07:53:38 +03:00
dependencies = [
"libc",
2023-01-24 14:25:12 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
2022-08-30 23:01:42 +03:00
"winapi",
2022-07-26 07:53:38 +03:00
]
2022-07-14 00:49:57 +03:00
[[package]]
name = "time"
2023-02-25 11:47:16 +03:00
version = "0.3.20"
2022-07-14 00:49:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "cd0cbfecb4d19b5ea75bb31ad904eb5b9fa13f21079c3b92017ebdf4999a5890"
2022-07-14 00:49:57 +03:00
dependencies = [
"itoa",
2022-10-25 00:07:29 +03:00
"serde",
"time-core",
2022-07-25 21:36:15 +03:00
"time-macros",
2022-07-14 00:49:57 +03:00
]
2022-10-25 00:07:29 +03:00
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
2022-07-25 21:36:15 +03:00
[[package]]
name = "time-macros"
2023-02-25 11:47:16 +03:00
version = "0.2.8"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "fd80a657e71da814b8e5d60d3374fc6d35045062245d80224748ae522dd76f36"
2022-10-25 00:07:29 +03:00
dependencies = [
"time-core",
]
2022-07-25 21:36:15 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
"crunchy",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "tinyvec"
2022-04-29 04:57:16 +03:00
version = "1.6.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-29 04:57:16 +03:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2022-03-05 06:46:57 +03:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-02-25 11:47:16 +03:00
version = "0.1.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2022-03-05 06:46:57 +03:00
[[package]]
name = "tokio"
2023-04-05 22:30:52 +03:00
version = "1.27.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "d0de47a4eecbe11f498978a9b29d792f0d2692d1dd003650c24c76510e3bc001"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-11-12 11:24:32 +03:00
"autocfg",
2022-03-05 06:46:57 +03:00
"bytes",
"libc",
"mio 0.8.6",
2022-03-05 06:46:57 +03:00
"num_cpus",
2022-06-03 00:48:49 +03:00
"parking_lot 0.12.1",
2022-03-05 06:46:57 +03:00
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
2022-05-17 19:23:27 +03:00
"tracing",
2023-03-10 20:45:47 +03:00
"windows-sys 0.45.0",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "tokio-console"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fce5f0a53cd350a00b3a37dcb85758eb3c333beeb334b40584f7747b1e01374e"
dependencies = [
"atty",
"clap",
"clap_complete",
"color-eyre",
"console-api",
"crossterm",
"dirs",
"futures",
"h2",
"hdrhistogram",
"humantime",
"once_cell",
"prost-types",
"regex",
"serde",
"tokio",
"toml 0.5.11",
"tonic",
"tracing",
"tracing-subscriber 0.3.16",
"tui",
]
[[package]]
name = "tokio-io-timeout"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
dependencies = [
"pin-project-lite",
"tokio",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "tokio-macros"
2023-04-05 22:30:52 +03:00
version = "2.0.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "61a573bdc87985e9d6ddeed1b3d864e8a302c847e40d647746df2f1de209d1ce"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 2.0.13",
2022-03-05 06:46:57 +03:00
]
2023-02-22 07:25:02 +03:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "tokio-rustls"
version = "0.23.4"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
2022-04-25 22:42:51 +03:00
dependencies = [
"rustls",
"tokio",
"webpki",
]
2022-05-30 07:30:13 +03:00
[[package]]
name = "tokio-stream"
2023-02-25 11:47:16 +03:00
version = "0.1.12"
2022-05-30 07:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313"
2022-05-30 07:30:13 +03:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
2022-10-27 01:29:38 +03:00
"tokio-util",
2022-05-30 07:30:13 +03:00
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "tokio-tungstenite"
2023-04-11 01:01:36 +03:00
version = "0.18.0"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 01:01:36 +03:00
checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd"
2022-04-25 22:14:10 +03:00
dependencies = [
"futures-util",
"log",
2022-04-25 22:42:51 +03:00
"rustls",
2022-04-25 22:14:10 +03:00
"tokio",
2022-04-25 22:42:51 +03:00
"tokio-rustls",
2023-04-11 01:01:36 +03:00
"tungstenite",
2022-04-25 22:42:51 +03:00
"webpki",
"webpki-roots",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "tokio-uring"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d5e02bb137e030b3a547c65a3bd2f1836d66a97369fdcc69034002b10e155ef"
dependencies = [
"io-uring",
"libc",
"scoped-tls",
"slab",
"socket2",
"tokio",
]
2022-04-24 10:26:00 +03:00
[[package]]
name = "tokio-util"
2023-02-25 11:47:16 +03:00
version = "0.7.7"
2022-04-24 10:26:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
2022-04-24 10:26:00 +03:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "toml"
version = "0.5.11"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-04-25 22:42:51 +03:00
dependencies = [
"serde",
]
2023-01-24 14:25:12 +03:00
[[package]]
name = "toml"
2023-04-05 22:30:52 +03:00
version = "0.7.3"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
2023-01-24 14:25:12 +03:00
dependencies = [
"serde",
"serde_spanned",
2023-01-31 02:57:06 +03:00
"toml_datetime 0.6.1",
2023-04-05 22:30:52 +03:00
"toml_edit 0.19.8",
2023-01-24 14:25:12 +03:00
]
[[package]]
name = "toml_datetime"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4553f467ac8e3d374bc9a177a26801e5d0f9b211aa1673fb137a403afd1c9cf5"
2023-01-31 02:57:06 +03:00
[[package]]
name = "toml_datetime"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
2023-01-24 14:25:12 +03:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.18.1"
2023-01-24 14:25:12 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c59d8dd7d0dcbc6428bf7aa2f0e823e26e43b3c9aca15bbc9475d23e5fa12b"
2023-01-31 02:57:06 +03:00
dependencies = [
"indexmap",
"nom8",
"toml_datetime 0.5.1",
]
[[package]]
name = "toml_edit"
2023-04-05 22:30:52 +03:00
version = "0.19.8"
2023-01-31 02:57:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-05 22:30:52 +03:00
checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
2023-01-24 14:25:12 +03:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
2023-01-31 02:57:06 +03:00
"toml_datetime 0.6.1",
2023-04-05 22:30:52 +03:00
"winnow",
2023-01-24 14:25:12 +03:00
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "tonic"
version = "0.8.3"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb"
2022-05-17 19:23:27 +03:00
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64 0.13.1",
"bytes",
2022-05-17 19:23:27 +03:00
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-timeout",
"percent-encoding",
2022-05-17 19:23:27 +03:00
"pin-project",
"prost",
"prost-derive",
2022-05-17 19:23:27 +03:00
"tokio",
"tokio-stream",
"tokio-util",
"tower",
2022-05-17 19:23:27 +03:00
"tower-layer",
"tower-service",
"tracing",
"tracing-futures",
2022-05-17 19:23:27 +03:00
]
[[package]]
name = "tower"
2022-06-18 10:06:54 +03:00
version = "0.4.13"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-18 10:06:54 +03:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2022-05-17 19:23:27 +03:00
dependencies = [
"futures-core",
"futures-util",
"indexmap",
2022-05-17 19:23:27 +03:00
"pin-project",
"pin-project-lite",
"rand",
"slab",
2022-05-17 19:23:27 +03:00
"tokio",
"tokio-util",
2022-05-17 19:23:27 +03:00
"tower-layer",
"tower-service",
"tracing",
]
2023-02-25 11:47:16 +03:00
[[package]]
name = "tower-http"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658"
dependencies = [
"bitflags",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"pin-project-lite",
"tower-layer",
"tower-service",
]
2022-05-17 19:23:27 +03:00
[[package]]
name = "tower-layer"
2022-12-14 05:13:23 +03:00
version = "0.3.2"
2022-05-17 19:23:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-12-14 05:13:23 +03:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2022-05-17 19:23:27 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "tower-service"
2023-01-24 14:25:12 +03:00
version = "0.3.2"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2022-03-05 06:46:57 +03:00
[[package]]
name = "tracing"
version = "0.1.37"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
"log",
"pin-project-lite",
2022-04-24 10:26:00 +03:00
"tracing-attributes",
2022-03-05 06:46:57 +03:00
"tracing-core",
]
2022-04-24 10:26:00 +03:00
[[package]]
name = "tracing-attributes"
version = "0.1.23"
2022-04-24 10:26:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-04-24 10:26:00 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-04-24 10:26:00 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "tracing-core"
version = "0.1.30"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2022-03-05 06:46:57 +03:00
dependencies = [
"once_cell",
"valuable",
2022-04-25 22:14:10 +03:00
]
[[package]]
name = "tracing-error"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4d7c0b83d4a500748fa5879461652b361edf5c9d51ede2a2ac03875ca185e24"
dependencies = [
"tracing",
"tracing-subscriber 0.2.25",
2022-04-25 22:14:10 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "tracing-futures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
dependencies = [
"pin-project",
"tracing",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71"
dependencies = [
"ansi_term",
"chrono",
"lazy_static",
"matchers 0.0.1",
"parking_lot 0.11.2",
"regex",
"serde",
"serde_json",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-serde",
]
2022-04-25 22:14:10 +03:00
[[package]]
name = "tracing-subscriber"
version = "0.3.16"
2022-04-25 22:14:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
2022-04-25 22:14:10 +03:00
dependencies = [
"matchers 0.1.0",
"nu-ansi-term",
2022-07-07 00:42:31 +03:00
"once_cell",
2022-05-17 19:23:27 +03:00
"regex",
2022-04-25 22:14:10 +03:00
"sharded-slab",
"smallvec",
2022-04-25 22:14:10 +03:00
"thread_local",
2022-05-17 19:23:27 +03:00
"tracing",
2022-04-25 22:14:10 +03:00
"tracing-core",
"tracing-log",
2022-03-05 06:46:57 +03:00
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "triomphe"
2023-01-24 14:25:12 +03:00
version = "0.1.8"
2022-09-05 06:40:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
2022-09-05 06:40:13 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "try-lock"
2023-01-24 14:25:12 +03:00
version = "0.2.4"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2022-03-05 06:46:57 +03:00
[[package]]
name = "tui"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39c8ce4e27049eed97cfa363a5048b09d995e209994634a0efc26a14ab6c0c23"
dependencies = [
"bitflags",
"cassowary",
"crossterm",
"unicode-segmentation",
"unicode-width",
]
2023-01-12 02:19:21 +03:00
[[package]]
name = "tungstenite"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788"
dependencies = [
2023-01-24 14:25:12 +03:00
"base64 0.13.1",
2023-01-12 02:19:21 +03:00
"byteorder",
"bytes",
"http",
"httparse",
"log",
"rand",
2023-04-11 01:01:36 +03:00
"rustls",
2023-01-12 02:19:21 +03:00
"sha1",
"thiserror",
"url",
"utf-8",
2023-04-11 01:01:36 +03:00
"webpki",
2023-01-12 02:19:21 +03:00
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "typenum"
2023-01-24 14:25:12 +03:00
version = "1.16.0"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2022-03-05 06:46:57 +03:00
2022-08-12 22:07:14 +03:00
[[package]]
name = "ucd-trie"
2023-01-24 14:25:12 +03:00
version = "0.1.5"
2022-08-12 22:07:14 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2022-08-12 22:07:14 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "uint"
2023-01-24 14:25:12 +03:00
version = "0.9.5"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52"
2022-04-25 22:42:51 +03:00
dependencies = [
"byteorder",
"crunchy",
"hex",
"static_assertions",
]
2022-08-21 11:18:57 +03:00
[[package]]
name = "ulid"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13a3aaa69b04e5b66cc27309710a569ea23593612387d67daaf102e73aa974fd"
dependencies = [
2022-11-12 11:24:32 +03:00
"rand",
2022-08-27 08:42:25 +03:00
"serde",
2022-08-21 11:18:57 +03:00
]
2022-10-25 00:07:29 +03:00
[[package]]
name = "uname"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
dependencies = [
"libc",
]
2022-09-05 06:40:13 +03:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "unicode-bidi"
2023-01-24 14:25:12 +03:00
version = "0.3.10"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "d54675592c1dbefd78cbd98db9bacd89886e1ca50692a0692baefffdeb92dd58"
2022-03-05 06:46:57 +03:00
2022-05-20 03:53:47 +03:00
[[package]]
name = "unicode-ident"
2023-04-11 00:27:06 +03:00
version = "1.0.8"
2022-05-20 03:53:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 00:27:06 +03:00
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2022-05-20 03:53:47 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "unicode-normalization"
2023-01-24 14:25:12 +03:00
version = "0.1.22"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2022-03-05 06:46:57 +03:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2023-02-08 22:11:16 +03:00
version = "1.10.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-08 22:11:16 +03:00
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2022-03-05 06:46:57 +03:00
2022-04-25 22:42:51 +03:00
[[package]]
name = "unicode-width"
2023-01-24 14:25:12 +03:00
version = "0.1.10"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2022-04-25 22:42:51 +03:00
2022-03-05 06:46:57 +03:00
[[package]]
name = "unicode-xid"
2022-10-27 01:29:38 +03:00
version = "0.2.4"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-27 01:29:38 +03:00
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2022-03-05 06:46:57 +03:00
2022-07-26 07:53:38 +03:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2022-04-25 22:42:51 +03:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2022-11-05 01:58:15 +03:00
[[package]]
name = "ureq"
2023-01-24 14:25:12 +03:00
version = "2.6.2"
2022-11-05 01:58:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d"
2022-11-05 01:58:15 +03:00
dependencies = [
2023-01-24 14:25:12 +03:00
"base64 0.13.1",
2022-11-05 01:58:15 +03:00
"log",
"once_cell",
"rustls",
"url",
"webpki",
"webpki-roots",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "url"
2022-09-09 00:01:36 +03:00
version = "2.3.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-09 00:01:36 +03:00
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
2022-03-05 06:46:57 +03:00
dependencies = [
"form_urlencoded",
2022-07-14 00:49:57 +03:00
"idna",
"percent-encoding",
2022-10-25 00:07:29 +03:00
"serde",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2022-04-25 22:42:51 +03:00
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom",
"serde",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "uuid"
2023-04-11 00:27:06 +03:00
version = "1.3.1"
2022-07-26 07:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-11 00:27:06 +03:00
checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb"
2022-07-26 07:53:38 +03:00
dependencies = [
"getrandom",
"serde",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2023-03-03 04:39:50 +03:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2022-03-05 06:46:57 +03:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-07-26 07:53:38 +03:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2022-04-25 22:42:51 +03:00
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
"winapi-util",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
2023-01-24 14:25:12 +03:00
version = "0.10.0+wasi-snapshot-preview1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2022-03-05 06:46:57 +03:00
2022-04-24 10:26:00 +03:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-03-05 06:46:57 +03:00
[[package]]
name = "wasm-bindgen"
2023-02-25 11:47:16 +03:00
version = "0.2.84"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "31f8dcbc21f30d9b8f2ea926ecb58f6b91192c17e9d33594b3df58b2007ca53b"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-02-25 11:47:16 +03:00
version = "0.2.84"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "95ce90fd5bcc06af55a641a86428ee4229e44e07033963a2290a8e241607ccb9"
2022-03-05 06:46:57 +03:00
dependencies = [
"bumpalo",
"log",
2022-08-21 11:30:43 +03:00
"once_cell",
2022-03-05 06:46:57 +03:00
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-02-25 11:47:16 +03:00
version = "0.4.34"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "f219e0d211ba40266969f6dbdd90636da12f75bee4fc9d6c23d1260dadb51454"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"cfg-if",
2022-03-05 06:46:57 +03:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-02-25 11:47:16 +03:00
version = "0.2.84"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "4c21f77c0bedc37fd5dc21f897894a5ca01e7bb159884559461862ae90c0b4c5"
2022-03-05 06:46:57 +03:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-02-25 11:47:16 +03:00
version = "0.2.84"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "2aff81306fcac3c7515ad4e177f521b5c9a15f2b08f4e32d823066102f35a5f6"
2022-03-05 06:46:57 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-04-05 22:30:52 +03:00
"syn 1.0.109",
2022-03-05 06:46:57 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-02-25 11:47:16 +03:00
version = "0.2.84"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "0046fef7e28c3804e5e38bfa31ea2a0f73905319b677e57ebe37e49358989b5d"
2022-03-05 06:46:57 +03:00
[[package]]
name = "wasm-streams"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "web-sys"
2023-02-25 11:47:16 +03:00
version = "0.3.61"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-25 11:47:16 +03:00
checksum = "e33b99f4b23ba3eec1a53ac264e35a755f00e966e0065077d6027c0f575b0b97"
2022-03-05 06:46:57 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-04-24 10:26:00 +03:00
[[package]]
2022-08-06 08:46:33 +03:00
name = "web3_proxy"
version = "0.17.0"
2022-04-24 10:26:00 +03:00
dependencies = [
"anyhow",
"argh",
2022-05-20 08:27:18 +03:00
"axum",
2022-07-07 06:22:09 +03:00
"axum-client-ip",
2022-08-16 22:29:00 +03:00
"axum-macros",
"chrono",
"console-subscriber",
2022-05-28 07:25:55 +03:00
"counter",
2022-09-15 20:57:24 +03:00
"deferred-rate-limiter",
2022-04-26 19:50:02 +03:00
"derive_more",
2022-07-26 03:38:00 +03:00
"dotenv",
2022-07-26 07:53:38 +03:00
"entities",
2022-11-12 11:24:32 +03:00
"env_logger",
2022-05-20 05:01:02 +03:00
"ethers",
2023-02-15 22:40:55 +03:00
"ewma",
2022-05-17 20:24:10 +03:00
"fdlimit",
2022-05-03 08:13:53 +03:00
"flume",
2023-02-22 07:25:02 +03:00
"fstrings",
2022-04-24 10:26:00 +03:00
"futures",
2023-01-24 11:05:31 +03:00
"gethostname",
"glob",
2022-08-12 22:07:14 +03:00
"handlebars",
2023-01-15 23:02:33 +03:00
"hashbrown 0.13.2",
2022-10-11 08:13:00 +03:00
"hdrhistogram",
2023-03-23 01:18:54 +03:00
"hostname",
2022-08-16 03:33:26 +03:00
"http",
"influxdb2",
"influxdb2-structmap",
"ipnet",
2022-10-27 00:39:26 +03:00
"itertools",
2022-11-12 11:24:32 +03:00
"log",
2022-07-26 07:53:38 +03:00
"migration",
2022-09-05 06:40:13 +03:00
"moka",
2022-07-09 05:33:53 +03:00
"num",
2022-09-24 10:03:29 +03:00
"num-traits",
"once_cell",
2023-02-15 22:40:55 +03:00
"ordered-float",
2023-01-24 11:05:31 +03:00
"pagerduty-rs",
2022-06-03 00:48:49 +03:00
"parking_lot 0.12.1",
2023-02-03 00:44:57 +03:00
"prettytable",
2022-05-12 21:49:57 +03:00
"proctitle",
2023-03-03 04:39:50 +03:00
"rdkafka",
2022-09-15 20:57:24 +03:00
"redis-rate-limiter",
2022-04-25 22:14:10 +03:00
"regex",
2022-04-24 10:26:00 +03:00
"reqwest",
2023-03-03 04:39:50 +03:00
"rmp-serde",
2022-05-02 23:32:55 +03:00
"rustc-hash",
2022-10-25 00:07:29 +03:00
"sentry",
2022-04-26 09:54:24 +03:00
"serde",
2022-04-24 10:26:00 +03:00
"serde_json",
2022-09-09 00:01:36 +03:00
"serde_prometheus",
2022-08-03 03:27:26 +03:00
"siwe",
2022-11-12 09:11:58 +03:00
"thread-fast-rng",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-04-24 10:26:00 +03:00
"tokio",
"tokio-console",
2022-05-30 07:30:13 +03:00
"tokio-stream",
"tokio-uring",
2023-04-05 22:30:52 +03:00
"toml 0.7.3",
2022-05-20 08:27:18 +03:00
"tower",
2023-03-10 20:45:47 +03:00
"tower-http",
2022-11-12 11:24:32 +03:00
"ulid",
2022-07-14 00:49:57 +03:00
"url",
2023-04-11 00:27:06 +03:00
"uuid 1.3.1",
2022-04-24 10:26:00 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "webpki-roots"
2023-01-24 14:25:12 +03:00
version = "0.22.6"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
2022-04-25 22:42:51 +03:00
dependencies = [
"webpki",
]
2022-07-26 07:53:38 +03:00
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2022-03-05 06:46:57 +03: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"
2022-04-25 22:42:51 +03:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2022-08-30 23:01:42 +03:00
"winapi",
2022-04-25 22:42:51 +03:00
]
2022-03-05 06:46:57 +03: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"
2023-01-24 11:05:31 +03:00
[[package]]
name = "windows"
version = "0.43.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244"
dependencies = [
2023-04-11 01:01:36 +03:00
"windows_aarch64_gnullvm 0.42.1",
"windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.1",
"windows_x86_64_gnullvm 0.42.1",
"windows_x86_64_msvc 0.42.1",
2022-03-05 06:46:57 +03:00
]
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
2023-04-11 01:01:36 +03:00
"windows_aarch64_gnullvm 0.42.1",
"windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.1",
"windows_x86_64_gnullvm 0.42.1",
"windows_x86_64_msvc 0.42.1",
]
2023-02-25 11:47:16 +03:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-11 01:01:36 +03:00
"windows-targets 0.42.1",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.0",
2023-02-25 11:47:16 +03:00
]
[[package]]
name = "windows-targets"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [
2023-04-11 01:01:36 +03:00
"windows_aarch64_gnullvm 0.42.1",
"windows_aarch64_msvc 0.42.1",
"windows_i686_gnu 0.42.1",
"windows_i686_msvc 0.42.1",
"windows_x86_64_gnu 0.42.1",
"windows_x86_64_gnullvm 0.42.1",
"windows_x86_64_msvc 0.42.1",
]
[[package]]
name = "windows-targets"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
dependencies = [
"windows_aarch64_gnullvm 0.48.0",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
"windows_x86_64_gnullvm 0.48.0",
"windows_x86_64_msvc 0.48.0",
2023-02-25 11:47:16 +03:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
2022-03-05 06:46:57 +03:00
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
2022-03-05 06:46:57 +03:00
[[package]]
name = "windows_i686_gnu"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-03-05 06:46:57 +03:00
[[package]]
name = "windows_i686_msvc"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
2022-03-05 06:46:57 +03:00
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
[[package]]
name = "windows_x86_64_gnu"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-03-05 06:46:57 +03:00
[[package]]
name = "windows_x86_64_msvc"
2023-01-24 14:25:12 +03:00
version = "0.42.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
2023-04-11 01:01:36 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2023-04-05 22:30:52 +03:00
[[package]]
name = "winnow"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
dependencies = [
"memchr",
]
2022-03-05 06:46:57 +03:00
[[package]]
name = "winreg"
2022-04-24 10:26:00 +03:00
version = "0.10.1"
2022-03-05 06:46:57 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-24 10:26:00 +03:00
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
2022-03-05 06:46:57 +03:00
dependencies = [
2022-08-30 23:01:42 +03:00
"winapi",
2022-03-05 06:46:57 +03:00
]
2022-04-25 22:42:51 +03:00
[[package]]
name = "ws_stream_wasm"
version = "0.7.4"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5"
2022-04-25 22:42:51 +03:00
dependencies = [
"async_io_stream",
"futures",
"js-sys",
"log",
2022-04-25 22:42:51 +03:00
"pharos",
"rustc_version",
2023-04-11 01:01:36 +03:00
"send_wrapper 0.6.0",
2022-04-25 22:42:51 +03:00
"thiserror",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
[[package]]
name = "wyz"
2023-01-24 14:25:12 +03:00
version = "0.5.1"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
2022-04-25 22:42:51 +03:00
dependencies = [
"tap",
]
2022-10-27 01:29:38 +03:00
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2022-04-25 22:42:51 +03:00
[[package]]
name = "zeroize"
2022-07-25 21:36:15 +03:00
version = "1.5.7"
2022-04-25 22:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-25 21:36:15 +03:00
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
[[package]]
name = "zip"
version = "0.6.4"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef"
2022-07-25 21:36:15 +03:00
dependencies = [
2022-10-27 01:29:38 +03:00
"aes 0.7.5",
2022-07-25 21:36:15 +03:00
"byteorder",
"bzip2",
"constant_time_eq",
"crc32fast",
"crossbeam-utils",
"flate2",
"hmac",
2023-04-11 01:01:36 +03:00
"pbkdf2 0.11.0",
2022-07-25 21:36:15 +03:00
"sha1",
2023-02-25 11:47:16 +03:00
"time 0.3.20",
2022-07-25 21:36:15 +03:00
"zstd",
]
[[package]]
name = "zstd"
2023-01-24 14:25:12 +03:00
version = "0.11.2+zstd.1.5.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
2022-07-25 21:36:15 +03:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2023-01-24 14:25:12 +03:00
version = "5.0.2+zstd.1.5.2"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-01-24 14:25:12 +03:00
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
2022-07-25 21:36:15 +03:00
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.7+zstd.1.5.4"
2022-07-25 21:36:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5"
2022-07-25 21:36:15 +03:00
dependencies = [
"cc",
"libc",
2023-01-24 14:25:12 +03:00
"pkg-config",
2022-07-25 21:36:15 +03:00
]