forked from althea-net/deep_space
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (36 loc) · 1.08 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
[package]
name = "deep_space"
version = "2.8.9"
authors = ["Justin Kilpatrick <justin@althea.net>", "Michał Papierski <michal@papierski.net>"]
repository = "https://github.com/althea-net/deep_space"
description = "A highly portable, batteries included, transaction generation and key management library for Cosmos blockchains"
license = "Apache-2.0"
edition = "2021"
[dependencies]
base64 = "0.13"
bech32 = "0.9"
bytes = "1.2"
cosmos-sdk-proto = { package = "cosmos-sdk-proto-althea", version = "0.13" }
hmac = { version = "0.12" }
log = "0.4"
num = "0.4"
pbkdf2 = { version = "0.11" }
prost = "0.10"
prost-types = "0.10"
rand = { version = "0.8" }
ripemd = "0.1"
rust_decimal = "1.26"
secp256k1 = "0.24"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha2 = "0.10"
tokio = { version = "1.20", features = ["time"] }
tonic = { version = "0.7", features = ["compression"] }
u64_array_bigints = { version = "0.3", default-features = false, features = ["serde_support"] }
unicode-normalization = { version = "0.1" }
[dev-dependencies]
actix-rt = "2.2"
env_logger = "0.9"
rand = "0.8"
[features]