-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (42 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
49 lines (42 loc) · 1.4 KB
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
[package]
name = "cosm-utils"
version = "0.1.2"
edition = "2021"
authors = ["Eric Woolsey <ewoolsey@ualberta.ca>"]
readme = "README.md"
description = "Simple utility traits and functions for tendermint_rpc and cosmrs"
repository = "https://github.com/cryptechdev/cosm-utils.git"
keywords = ["cosmos", "client", "tendermint", "cosmwasm", "cosmrs"]
categories = ["cryptography::cryptocurrencies"]
license = "Apache-2.0"
[features]
default = ["injective"]
injective = ["dep:injective-std", "dep:ethers-signers"]
[dependencies]
cosmrs = { git = "https://github.com/cosmos/cosmos-rust", rev = "871e5140db1", features = [
"rpc",
"cosmwasm",
"grpc",
"tendermint-rpc",
] }
tendermint-rpc = { version = "0.38.0", features = [
"websocket-client",
"http-client",
] }
bip32 = { version = "0.5", features = ["mnemonic"] }
tokio = { version = "1.20.1", features = ["full"] }
log = "0.4"
async-trait = "0.1.57"
thiserror = "1.0.31"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
schemars = "0.8"
lazy_static = "1"
keyring = { version = "2", optional = true }
mockall = { version = "0.11.2", optional = true }
# Optional dependencies for injective
injective-std = { git = "https://github.com/cryptechdev/cw-injective.git", branch = "eric/dev", optional = true }
ecdsa = "0.16"
ethers-signers = { version = "=2.0.11", optional = true }
ethers = "=2.0.11"
bech32 = "0.9.1"