-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cargo.toml
40 lines (34 loc) · 904 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
37
38
39
40
[package]
name = "helium-proto"
version = "0.1.0"
authors = ["Helium <info@helium.com>"]
edition = "2021"
license = "Apache-2.0"
[lib]
name = "helium_proto"
path = "src/lib.rs"
[workspace]
members = ["beacon"]
[workspace.dependencies]
# Pin to 0.10 to avoid issues with tls and solana dalek deps
tonic = { version = "0.10" }
bytes = "1"
prost = "0.12"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tonic-build = { version = "0.10" }
prost-build = "0.12"
[features]
default= []
services=["tonic-build", "tonic"]
[dependencies]
tonic = { workspace = true, optional = true}
bytes = { workspace = true }
prost = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
[build-dependencies]
tonic-build = { workspace = true, optional = true }
prost-build = { workspace = true }