forked from launchbadge/hedera-sdk-rust-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (46 loc) · 1.2 KB
/
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
41
42
43
44
45
46
47
48
49
50
[package]
name = "hedera"
version = "0.4.2-alpha.0"
description = "Hedera SDK for Rust"
license = "Apache-2.0"
repository = "https://github.com/hashgraph/hedera-sdk-rust"
edition = "2018"
keywords = ["hedera", "sdk"]
authors = [
"LaunchBadge <[email protected]>"
]
[dependencies]
ed25519-dalek = { version = "1.0.0-pre.1", default-features = false, features = [ "std", "nightly", "u64_backend" ] }
rand = "0.6.5"
sha2 = "0.8.0"
hex = "0.3.2"
failure = "0.1.5"
simple_asn1 = "0.3.0"
failure_derive = "0.1.5"
once_cell = { version = "0.1.7", features = [ "parking_lot" ] }
num = "0.2.0"
protobuf = "2.3.0"
itertools = "0.8.0"
chrono = "0.4.6"
futures01 = { version = "0.1.25", package = "futures" }
parking_lot = "0.7.1"
grpc = "0.6.1"
query_interface = "0.3.5"
httpbis = "0.7.0"
log = "0.4.6"
try_from = "0.3.2"
bip39 = "0.6.0-beta.1"
rand_chacha = "0.1.1"
tokio-async-await = "0.1.5"
tokio = { version = "0.1.15", features = [ "async-await-preview" ] }
futures = { version = "0.3.0-alpha.12", package = "futures-preview" }
[build-dependencies]
protoc-rust-grpc = "0.6.1"
glob = "0.2.11"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
incremental = false
[dev-dependencies]
pretty_env_logger = "0.3.0"