forked from de-husk/cosm-tome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (30 loc) · 938 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
[package]
name = "cosm-tome"
version = "0.2.2"
edition = "2021"
authors = ["Harry Hull <harry.hull1@gmail.com>"]
readme = "README.md"
description = "Easy to use Cosmos SDK rust client library "
repository = "https://github.com/de-husk/cosm-tome.git"
keywords = ["cosmos"]
categories = ["cryptography::cryptocurrencies"]
license = "Apache-2.0"
[features]
mocks = ["mockall"]
os_keyring = ["keyring"]
[dependencies]
cosmrs = { version = "0.14.0", features = ["rpc", "cosmwasm", "grpc"] }
tonic = { version = "0.8.2", default-features = false, features = [
"transport",
"prost",
] }
async-trait = "0.1.57"
thiserror = "1.0.31"
regex = "1.6.0"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
schemars = "0.8"
keyring = { version = "1.2.0", optional = true }
mockall = { version = "0.11.2", optional = true }
[dev-dependencies]
tokio = { version = "1.20.1", features = ["full"] }