diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-02 18:36:06 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-02 18:36:06 -0600 |
| commit | 8cdfa445d6629ffef4cb84967ff7017654045bc2 (patch) | |
| tree | 22f0b0907c024c78d26a731e2e1f5219407d8102 /vendor/tonic-reflection/Cargo.toml | |
| parent | 4351c74c7c5f97156bc94d3a8549b9940ac80e3f (diff) | |
chore: add vendor directory
Diffstat (limited to 'vendor/tonic-reflection/Cargo.toml')
| -rw-r--r-- | vendor/tonic-reflection/Cargo.toml | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/vendor/tonic-reflection/Cargo.toml b/vendor/tonic-reflection/Cargo.toml new file mode 100644 index 00000000..3d0ab5c2 --- /dev/null +++ b/vendor/tonic-reflection/Cargo.toml @@ -0,0 +1,128 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2021" +rust-version = "1.75" +name = "tonic-reflection" +version = "0.13.1" +authors = [ + "James Nugent <james@jen20.com>", + "Samani G. Gikandi <samani@gojulas.com>", +] +build = false +autolib = false +autobins = false +autoexamples = false +autotests = false +autobenches = false +description = """ +Server Reflection module of `tonic` gRPC implementation. +""" +homepage = "https://github.com/hyperium/tonic" +readme = "README.md" +keywords = [ + "rpc", + "grpc", + "async", + "reflection", +] +categories = [ + "network-programming", + "asynchronous", +] +license = "MIT" +repository = "https://github.com/hyperium/tonic" + +[package.metadata.cargo_check_external_types] +allowed_external_types = [ + "tonic::*", + "bytes::*", + "http::*", + "http_body::*", + "prost::*", + "prost_types::*", + "futures_core::stream::Stream", + "tower_service::Service", +] + +[package.metadata.docs.rs] +all-features = true + +[features] +default = ["server"] +server = [ + "dep:prost-types", + "dep:tokio", + "dep:tokio-stream", +] + +[lib] +name = "tonic_reflection" +path = "src/lib.rs" + +[[test]] +name = "server" +path = "tests/server.rs" + +[[test]] +name = "versions" +path = "tests/versions.rs" + +[dependencies.prost] +version = "0.13" + +[dependencies.prost-types] +version = "0.13" +optional = true + +[dependencies.tokio] +version = "1.0" +features = [ + "sync", + "rt", +] +optional = true + +[dependencies.tokio-stream] +version = "0.1" +optional = true +default-features = false + +[dependencies.tonic] +version = "0.13.0" +features = [ + "codegen", + "prost", +] +default-features = false + +[dev-dependencies.tokio-stream] +version = "0.1" +features = ["net"] +default-features = false + +[dev-dependencies.tonic] +version = "0.13.0" +features = ["transport"] +default-features = false + +[lints.clippy] +uninlined_format_args = "deny" + +[lints.rust] +missing_debug_implementations = "warn" +missing_docs = "warn" +rust_2018_idioms = "warn" +unreachable_pub = "warn" + +[lints.rustdoc] +broken_intra_doc_links = "deny" |
