-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathCargo.toml
36 lines (32 loc) · 898 Bytes
/
Cargo.toml
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
36
[package]
authors = [
"Lucio Franco <[email protected]>",
"Rafael Lemos <[email protected]>"
]
categories = ["web-programming", "network-programming", "asynchronous"]
description = """
A collection of useful protobuf types that can be used with `tonic`.
"""
documentation = "https://docs.rs/tonic-types/0.13.0"
edition = "2021"
homepage = "https://github.com/hyperium/tonic"
keywords = ["rpc", "grpc", "protobuf"]
license = "MIT"
name = "tonic-types"
readme = "README.md"
repository = "https://github.com/hyperium/tonic"
version = "0.13.0"
rust-version = { workspace = true }
[dependencies]
prost = "0.13"
prost-types = "0.13"
tonic = { version = "0.13.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::*",
]