-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 796 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
[package]
name = "tron-rs"
version = "0.1.0"
authors = ["Jamin Yeates <jamin@hyperlane.xyz>"]
repository = "https://github.com/hyperlane-xyz/tron-rs"
description = "Protobuf struct defintions for interacting with the Tron chain"
readme = "README.md"
categories = ["cryptography", "cryptography::cryptocurrencies", "database"]
keywords = ["hyperlane", "blockchain", "tron", "proto"]
edition = "2021"
rust-version = "1.72"
license-file = "LICENSE"
[dependencies]
prost = { version = "0.13", default-features = true }
prost-types = { version = "0.13" }
# Optional dependencies
tonic = { version = "0.12", optional = false, default-features = true, features = [
"codegen",
"prost",
] }
serde = { version = "1.0.203", optional = false, default-features = true, features = [
"alloc",
] }