rust-grpc/Cargo.lock

977 lines
24 KiB
Plaintext
Raw Normal View History

2024-02-25 10:08:56 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
2024-11-26 08:09:35 +00:00
version = "0.24.2"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2024-02-25 10:08:56 +00:00
dependencies = [
"gimli",
]
[[package]]
2024-11-26 08:09:35 +00:00
name = "adler2"
version = "2.0.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2024-02-25 10:08:56 +00:00
[[package]]
name = "anyhow"
2024-11-26 08:09:35 +00:00
version = "1.0.93"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
2024-02-25 10:08:56 +00:00
[[package]]
name = "async-stream"
2024-11-26 08:09:35 +00:00
version = "0.3.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
2024-02-25 10:08:56 +00:00
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
2024-11-26 08:09:35 +00:00
version = "0.3.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
2024-11-26 08:09:35 +00:00
version = "0.1.83"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-07-14 00:42:22 +00:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2024-02-25 10:08:56 +00:00
[[package]]
name = "autocfg"
2024-11-26 08:09:35 +00:00
version = "1.4.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2024-02-25 10:08:56 +00:00
[[package]]
name = "axum"
2024-11-26 08:09:35 +00:00
version = "0.7.9"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
2024-02-25 10:08:56 +00:00
dependencies = [
"async-trait",
"axum-core",
"bytes",
"futures-util",
"http",
"http-body",
2024-07-14 00:42:22 +00:00
"http-body-util",
2024-02-25 10:08:56 +00:00
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"rustversion",
"serde",
2024-11-26 08:09:35 +00:00
"sync_wrapper 1.0.2",
"tower 0.5.1",
2024-02-25 10:08:56 +00:00
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
2024-11-26 08:09:35 +00:00
version = "0.4.5"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
2024-02-25 10:08:56 +00:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
2024-07-14 00:42:22 +00:00
"http-body-util",
2024-02-25 10:08:56 +00:00
"mime",
2024-07-14 00:42:22 +00:00
"pin-project-lite",
2024-02-25 10:08:56 +00:00
"rustversion",
2024-11-26 08:09:35 +00:00
"sync_wrapper 1.0.2",
2024-02-25 10:08:56 +00:00
"tower-layer",
"tower-service",
]
[[package]]
name = "backtrace"
2024-11-26 08:09:35 +00:00
version = "0.3.74"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2024-02-25 10:08:56 +00:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2024-11-26 08:09:35 +00:00
"windows-targets",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "base64"
2024-07-14 00:42:22 +00:00
version = "0.22.1"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-02-25 10:08:56 +00:00
[[package]]
2024-11-26 08:09:35 +00:00
name = "byteorder"
version = "1.5.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2024-02-25 10:08:56 +00:00
[[package]]
2024-11-26 08:09:35 +00:00
name = "bytes"
version = "1.8.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
2024-02-25 10:08:56 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "either"
2024-07-14 00:42:22 +00:00
version = "1.13.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2024-02-25 10:08:56 +00:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "futures-channel"
2024-11-26 08:09:35 +00:00
version = "0.3.31"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2024-02-25 10:08:56 +00:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2024-11-26 08:09:35 +00:00
version = "0.3.31"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2024-02-25 10:08:56 +00:00
[[package]]
name = "futures-sink"
2024-11-26 08:09:35 +00:00
version = "0.3.31"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2024-02-25 10:08:56 +00:00
[[package]]
name = "futures-task"
2024-11-26 08:09:35 +00:00
version = "0.3.31"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2024-02-25 10:08:56 +00:00
[[package]]
name = "futures-util"
2024-11-26 08:09:35 +00:00
version = "0.3.31"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2024-02-25 10:08:56 +00:00
dependencies = [
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
[[package]]
name = "getrandom"
2024-07-14 00:42:22 +00:00
version = "0.2.15"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2024-02-25 10:08:56 +00:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "gimli"
2024-11-26 08:09:35 +00:00
version = "0.31.1"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2024-02-25 10:08:56 +00:00
[[package]]
name = "h2"
2024-11-26 08:09:35 +00:00
version = "0.4.7"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
2024-02-25 10:08:56 +00:00
dependencies = [
2024-07-14 00:42:22 +00:00
"atomic-waker",
2024-02-25 10:08:56 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"http",
2024-11-26 08:09:35 +00:00
"indexmap 2.6.0",
2024-02-25 10:08:56 +00:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hashbrown"
2024-11-26 08:09:35 +00:00
version = "0.15.2"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
[[package]]
name = "hermit-abi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2024-02-25 10:08:56 +00:00
[[package]]
name = "http"
2024-07-14 00:42:22 +00:00
version = "1.1.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
2024-02-25 10:08:56 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2024-07-14 00:42:22 +00:00
version = "1.0.1"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2024-02-25 10:08:56 +00:00
dependencies = [
"bytes",
"http",
2024-07-14 00:42:22 +00:00
]
[[package]]
name = "http-body-util"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
dependencies = [
"bytes",
"futures-util",
"http",
"http-body",
2024-02-25 10:08:56 +00:00
"pin-project-lite",
]
[[package]]
name = "httparse"
2024-11-26 08:09:35 +00:00
version = "1.9.5"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
2024-02-25 10:08:56 +00:00
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "hyper"
2024-11-26 08:09:35 +00:00
version = "1.5.1"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f"
2024-02-25 10:08:56 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2024-07-14 00:42:22 +00:00
"smallvec",
2024-02-25 10:08:56 +00:00
"tokio",
"want",
]
[[package]]
name = "hyper-timeout"
2024-11-26 08:09:35 +00:00
version = "0.5.2"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
2024-02-25 10:08:56 +00:00
dependencies = [
"hyper",
2024-07-14 00:42:22 +00:00
"hyper-util",
2024-02-25 10:08:56 +00:00
"pin-project-lite",
"tokio",
2024-07-14 00:42:22 +00:00
"tower-service",
]
[[package]]
name = "hyper-util"
2024-11-26 08:09:35 +00:00
version = "0.1.10"
2024-07-14 00:42:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
2024-07-14 00:42:22 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http",
"http-body",
"hyper",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown 0.12.3",
]
[[package]]
name = "indexmap"
2024-11-26 08:09:35 +00:00
version = "2.6.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
2024-02-25 10:08:56 +00:00
dependencies = [
"equivalent",
2024-11-26 08:09:35 +00:00
"hashbrown 0.15.2",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "itertools"
2024-07-14 00:42:22 +00:00
version = "0.13.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
2024-02-25 10:08:56 +00:00
dependencies = [
"either",
]
[[package]]
name = "itoa"
2024-11-26 08:09:35 +00:00
version = "1.0.14"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
2024-02-25 10:08:56 +00:00
[[package]]
name = "libc"
2024-11-26 08:09:35 +00:00
version = "0.2.165"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e"
2024-02-25 10:08:56 +00:00
[[package]]
name = "matchit"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
[[package]]
name = "memchr"
2024-07-14 00:42:22 +00:00
version = "2.7.4"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2024-02-25 10:08:56 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "miniz_oxide"
2024-11-26 08:09:35 +00:00
version = "0.8.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
2024-02-25 10:08:56 +00:00
dependencies = [
2024-11-26 08:09:35 +00:00
"adler2",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "mio"
2024-11-26 08:09:35 +00:00
version = "1.0.2"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2024-02-25 10:08:56 +00:00
dependencies = [
2024-11-26 08:09:35 +00:00
"hermit-abi",
2024-02-25 10:08:56 +00:00
"libc",
"wasi",
2024-11-26 08:09:35 +00:00
"windows-sys",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "object"
2024-11-26 08:09:35 +00:00
version = "0.36.5"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2024-02-25 10:08:56 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2024-11-26 08:09:35 +00:00
version = "1.20.2"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2024-02-25 10:08:56 +00:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pin-project"
2024-11-26 08:09:35 +00:00
version = "1.1.7"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
2024-02-25 10:08:56 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2024-11-26 08:09:35 +00:00
version = "1.1.7"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2024-11-26 08:09:35 +00:00
version = "0.2.15"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2024-02-25 10:08:56 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "ppv-lite86"
2024-11-26 08:09:35 +00:00
version = "0.2.20"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2024-02-25 10:08:56 +00:00
[[package]]
name = "proc-macro2"
2024-11-26 08:09:35 +00:00
version = "1.0.92"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2024-02-25 10:08:56 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "prost"
2024-11-26 08:09:35 +00:00
version = "0.13.3"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "7b0487d90e047de87f984913713b85c601c05609aad5b0df4b4573fbf69aa13f"
2024-02-25 10:08:56 +00:00
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-derive"
2024-11-26 08:09:35 +00:00
version = "0.13.3"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "e9552f850d5f0964a4e4d0bf306459ac29323ddfbae05e35a7c0d35cb0803cc5"
2024-02-25 10:08:56 +00:00
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "prost-types"
2024-11-26 08:09:35 +00:00
version = "0.13.3-serde1"
2024-07-14 16:33:02 +00:00
source = "sparse+https://git.itzana.me/api/packages/strafesnet/cargo/"
2024-11-26 08:09:35 +00:00
checksum = "8819b8aaed4d56560ff473ee45247539098b6fba5c8748a429903c499d5bc4a9"
2024-02-25 10:08:56 +00:00
dependencies = [
"prost",
2024-07-14 16:33:02 +00:00
"serde",
2024-07-18 21:07:10 +00:00
"serde_json",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "quote"
2024-11-26 08:09:35 +00:00
version = "1.0.37"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "rust-grpc"
2024-07-22 02:26:15 +00:00
version = "1.0.2"
2024-02-25 10:08:56 +00:00
dependencies = [
"prost",
"prost-types",
2024-07-14 15:47:01 +00:00
"serde",
2024-02-25 10:08:56 +00:00
"tonic",
]
[[package]]
name = "rustc-demangle"
2024-07-14 00:42:22 +00:00
version = "0.1.24"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2024-02-25 10:08:56 +00:00
[[package]]
name = "rustversion"
2024-11-26 08:09:35 +00:00
version = "1.0.18"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
2024-02-25 10:08:56 +00:00
2024-07-18 21:07:10 +00:00
[[package]]
name = "ryu"
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2024-02-25 10:08:56 +00:00
[[package]]
name = "serde"
2024-11-26 08:09:35 +00:00
version = "1.0.215"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
2024-02-25 10:08:56 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-11-26 08:09:35 +00:00
version = "1.0.215"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2024-07-18 21:07:10 +00:00
[[package]]
name = "serde_json"
2024-11-26 08:09:35 +00:00
version = "1.0.133"
2024-07-18 21:07:10 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
2024-07-18 21:07:10 +00:00
dependencies = [
"itoa",
2024-11-26 08:09:35 +00:00
"memchr",
2024-07-18 21:07:10 +00:00
"ryu",
"serde",
]
2024-02-25 10:08:56 +00:00
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
2024-07-14 00:42:22 +00:00
[[package]]
name = "smallvec"
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2024-02-25 10:08:56 +00:00
[[package]]
name = "socket2"
2024-07-14 00:42:22 +00:00
version = "0.5.7"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2024-02-25 10:08:56 +00:00
dependencies = [
"libc",
2024-11-26 08:09:35 +00:00
"windows-sys",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "syn"
2024-11-26 08:09:35 +00:00
version = "2.0.89"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
2024-02-25 10:08:56 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2024-07-14 00:42:22 +00:00
[[package]]
name = "sync_wrapper"
2024-11-26 08:09:35 +00:00
version = "1.0.2"
2024-07-14 00:42:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2024-07-14 00:42:22 +00:00
2024-02-25 10:08:56 +00:00
[[package]]
name = "tokio"
2024-11-26 08:09:35 +00:00
version = "1.41.1"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
2024-02-25 10:08:56 +00:00
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
"pin-project-lite",
"socket2",
2024-07-14 00:42:22 +00:00
"tokio-macros",
2024-11-26 08:09:35 +00:00
"windows-sys",
2024-02-25 10:08:56 +00:00
]
[[package]]
2024-07-14 00:42:22 +00:00
name = "tokio-macros"
2024-11-26 08:09:35 +00:00
version = "2.4.0"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
2024-02-25 10:08:56 +00:00
dependencies = [
2024-07-14 00:42:22 +00:00
"proc-macro2",
"quote",
"syn",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "tokio-stream"
2024-11-26 08:09:35 +00:00
version = "0.1.16"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
2024-02-25 10:08:56 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2024-11-26 08:09:35 +00:00
version = "0.7.12"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
2024-02-25 10:08:56 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tonic"
2024-11-26 08:09:35 +00:00
version = "0.12.3"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2024-02-25 10:08:56 +00:00
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64",
"bytes",
"h2",
"http",
"http-body",
2024-07-14 00:42:22 +00:00
"http-body-util",
2024-02-25 10:08:56 +00:00
"hyper",
"hyper-timeout",
2024-07-14 00:42:22 +00:00
"hyper-util",
2024-02-25 10:08:56 +00:00
"percent-encoding",
"pin-project",
"prost",
2024-07-14 00:42:22 +00:00
"socket2",
2024-02-25 10:08:56 +00:00
"tokio",
"tokio-stream",
2024-11-26 08:09:35 +00:00
"tower 0.4.13",
2024-02-25 10:08:56 +00:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"indexmap 1.9.3",
"pin-project",
"pin-project-lite",
"rand",
"slab",
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
"tracing",
]
2024-11-26 08:09:35 +00:00
[[package]]
name = "tower"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2873938d487c3cfb9aed7546dc9f2711d867c9f90c46b889989a2cb84eba6b4f"
dependencies = [
"futures-core",
"futures-util",
"pin-project-lite",
"sync_wrapper 0.1.2",
"tower-layer",
"tower-service",
]
2024-02-25 10:08:56 +00:00
[[package]]
name = "tower-layer"
2024-11-26 08:09:35 +00:00
version = "0.3.3"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2024-02-25 10:08:56 +00:00
[[package]]
name = "tower-service"
2024-11-26 08:09:35 +00:00
version = "0.3.3"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2024-02-25 10:08:56 +00:00
[[package]]
name = "tracing"
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2024-11-26 08:09:35 +00:00
version = "0.1.33"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2024-02-25 10:08:56 +00:00
dependencies = [
"once_cell",
]
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "unicode-ident"
2024-11-26 08:09:35 +00:00
version = "1.0.14"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2024-02-25 10:08:56 +00:00
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-11-26 08:09:35 +00:00
"windows-targets",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "windows-targets"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-02-25 10:08:56 +00:00
dependencies = [
2024-11-26 08:09:35 +00:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-07-14 00:42:22 +00:00
"windows_i686_gnullvm",
2024-11-26 08:09:35 +00:00
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
2024-02-25 10:08:56 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-02-25 10:08:56 +00:00
[[package]]
name = "windows_aarch64_msvc"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-02-25 10:08:56 +00:00
[[package]]
name = "windows_i686_gnu"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-02-25 10:08:56 +00:00
[[package]]
name = "windows_i686_msvc"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-02-25 10:08:56 +00:00
[[package]]
name = "windows_x86_64_gnu"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-14 00:42:22 +00:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-02-25 10:08:56 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-11-26 08:09:35 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-02-25 10:08:56 +00:00
[[package]]
2024-11-26 08:09:35 +00:00
name = "windows_x86_64_msvc"
2024-07-14 00:42:22 +00:00
version = "0.52.6"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-02-25 10:08:56 +00:00
[[package]]
2024-11-26 08:09:35 +00:00
name = "zerocopy"
version = "0.7.35"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"byteorder",
"zerocopy-derive",
]
2024-02-25 10:08:56 +00:00
[[package]]
2024-11-26 08:09:35 +00:00
name = "zerocopy-derive"
version = "0.7.35"
2024-02-25 10:08:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-26 08:09:35 +00:00
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]