forked from de-husk/cosm-tome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (27 loc) · 924 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
[package]
name = "cosm-tome"
version = "0.1.1"
edition = "2021"
authors = ["Harry Hull <[email protected]>"]
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.10.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"]}