forked from oikos-cash/tron-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 691 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 691 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
[package]
name = "tron-api-client"
version = "0.1.1-alpha.0"
authors = ["Kevin Holder <kevholderx@gmail.com>"]
description = "Tron API client and CLI"
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/oikos-cash/tron-api-client.git"
keywords = ["cryptocurrency", "tron", "ethereum", "bitcoin"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "^2.33"
url = "2.1.1"
reqwest = { version = "0.10", features = ["json"] }
tokio = { version = "0.2", features = ["full"] }
chrono = "0.4.11"
serde_json = "1.0"
serde_derive = "1.0"
serde = "1.0"
[[bin]]
name = "tron"
path = "src/main.rs"