Home
last modified time | relevance | path

Searched refs:package (Results 1 – 25 of 87) sorted by relevance

1234

/tonic/tonic/src/
H A Dmacros.rs32 ($package: tt) => {
33 include!(concat!(env!("OUT_DIR"), concat!("/", $package, ".rs")));
73 ($package: tt) => {
74 include_bytes!(concat!(env!("OUT_DIR"), concat!("/", $package, ".bin")))
/tonic/tonic-build/src/
H A Dmanual.rs61 package: Option<String>, field
83 pub fn package(mut self, package: impl AsRef<str>) -> Self { in package() method
84 self.package = Some(package.as_ref().to_owned()); in package()
107 package: self.package.unwrap(), in build()
119 package: String, field
142 fn package(&self) -> &str { in package() method
143 &self.package in package()
496 let out_file = out_dir.join(format!("{}.{}.rs", service.package, service.name)); in compile()
H A Dlib.rs113 fn package(&self) -> &str; in package() method
202 let package = if emit_package { service.package() } else { "" }; in format_service_name() localVariable
205 package, in format_service_name()
206 if package.is_empty() { "" } else { "." }, in format_service_name()
/tonic/tests/use_arc_self/
H A DCargo.toml1 [package]
15 [package.metadata.cargo-machete]
/tonic/tests/default_stubs/
H A DCargo.toml1 [package]
16 [package.metadata.cargo-machete]
/tonic/tonic-build/
H A DCargo.toml1 [package]
35 [package.metadata.docs.rs]
38 [package.metadata.cargo_check_external_types]
/tonic/tests/extern_path/my_application/
H A DCargo.toml1 [package]
12 uuid = {package = "uuid1", path = "../uuid"}
/tonic/tonic-reflection/proto/
H A Dreflection_v1alpha.proto19 package grpc.reflection.v1alpha;
40 // (e.g. <package>.<service>[.<method>] or <package>.<type>).
54 // <package>.<type>
66 // Fully-qualified type name. The format should be <package>.<type>
110 // Full name of the base type, including the package name. The format
111 // is <package>.<type>
126 // Full name of a registered service, including its package name. The format
127 // is <package>.<service>
H A Dreflection_v1.proto24 package grpc.reflection.v1;
50 // (e.g. <package>.<service>[.<method>] or <package>.<type>).
64 // <package>.<type>
76 // Fully-qualified type name. The format should be <package>.<type>
120 // Full name of the base type, including the package name. The format
121 // is <package>.<type>
136 // Full name of a registered service, including its package name. The format
137 // is <package>.<service>
/tonic/tonic-reflection/
H A DCargo.toml1 [package]
21 [package.metadata.docs.rs]
43 [package.metadata.cargo_check_external_types]
/tonic/.github/workflows/
H A DCI.yml49 - run: cargo run --package codegen
64 - run: cargo udeps --package tonic --features tls-ring,transport
65 - run: cargo udeps --package tonic --features tls-ring,server
66 - run: cargo udeps --package tonic --features tls-ring,channel
67 - run: cargo udeps --package tonic --features tls-aws-lc,transport
68 - run: cargo udeps --package tonic --features tls-aws-lc,server
69 - run: cargo udeps --package tonic --features tls-aws-lc,channel
85 run: cargo hack check --package tonic --feature-powerset --depth 2
100 run: echo "version=$(yq '.workspace.package.rust-version' Cargo.toml)" >> $GITHUB_OUTPUT
/tonic/tonic-types/
H A DCargo.toml1 [package]
29 [package.metadata.cargo_check_external_types]
/tonic/tonic-web/
H A DCargo.toml1 [package]
37 [package.metadata.cargo_check_external_types]
/tonic/tonic-health/
H A DCargo.toml1 [package]
31 [package.metadata.cargo_check_external_types]
/tonic/tests/skip_debug/proto/
H A Dtest.proto3 package test;
/tonic/tests/included_service/proto/
H A Dincludee.proto3 package includee;
H A Dincluder.proto3 package includer;
/tonic/tests/integration_tests/proto/
H A Dstream.proto3 package stream;
/tonic/tests/stream_conflict/proto/
H A Dstream_conflict.proto2 package StreamConflict;
/tonic/tests/service_named_service/proto/
H A Dfoo.proto3 package foo;
/tonic/tests/same_name/proto/
H A Dfoo.proto3 package foo;
/tonic/tests/root-crate-path/
H A Dfoo.proto3 package foo.bar.baz;
/tonic/tests/wellknown-compiled/proto/
H A Dtest.proto2 package test;
/tonic/tests/extern_path/proto/uuid/
H A Duuid.proto3 package uuid;
/tonic/tests/service_named_result/proto/
H A Dresult.proto5 package result;

1234