-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 860 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
authors = [
"Lucio Franco <luciofranco14@gmail.com>",
"Rafael Lemos <flemos.rafael.dev@gmail.com>"
]
categories = ["web-programming", "network-programming", "asynchronous"]
description = """
A collection of useful protobuf types that can be used with `tonic`.
"""
edition = "2021"
homepage = "https://github.com/hyperium/tonic"
keywords = ["rpc", "grpc", "protobuf"]
license = "MIT AND Apache-2.0"
name = "tonic-types"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.14.0"
rust-version = { workspace = true }
[dependencies]
prost = "0.14"
prost-types = "0.14"
tonic = { version = "0.14.0", path = "../tonic", default-features = false }
[lints]
workspace = true
[package.metadata.cargo_check_external_types]
allowed_external_types = [
"tonic::*",
# not major released
"prost::*",
"prost_types::*",
]