-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 746 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
[package]
authors = ["Orne Brocaar <info@brocaar.com>"]
description = "ChirpStack Protobuf / gRPC API definitions."
edition = "2018"
homepage = "https://www.chirpstack.io"
license = "MIT"
name = "chirpstack_api"
repository = "https://github.com/brocaar/chirpstack-api"
version = "3.12.4"
[features]
default = ["grpc_support", "rustfmt"]
grpc_support = ["tonic/transport", "tonic-build/transport", "tokio"]
rustfmt = ["tonic-build/rustfmt"]
[dependencies]
prost = "0.8"
prost-types = "0.8"
tokio = {version = "1.13", features = ["macros"], optional = true}
tonic = {version = "0.5", features = ["codegen", "prost"], default-features = false}
[build-dependencies]
tonic-build = {version = "0.5", features = ["prost"], default-features = false}