-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (47 loc) · 1.73 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
51
[package]
name = "cosmos-rust-package"
authors = ["Philipp Schlütermann <[email protected]>"]
version = "0.3.0"
edition = "2021"
[dependencies]
# https://github.com/cosmos/cosmos-rust.git version = "0.19.0"
# https://github.com/Philipp-Sc/cosmos-rust-development.git branch="patch-2"
cosmrs = {git = "https://github.com/cosmos/cosmos-rust.git", features = ["cosmwasm"] }
cosmos-sdk-proto = { git="https://github.com/cosmos/cosmos-rust.git", features = ["grpc-transport", "cosmwasm"] }
tonic = { version = "0.10.2", features = ["transport","tls","tls-roots","tls-webpki-roots"] }
osmosis_prost = { version ="0.11.9", package = "prost" }
prost-types = "0.12.1"
osmosis-std = { version = "0.20.1", optional = true }
injective-std = "0.1.3"
#osmosis-std = { git = "https://github.com/Philipp-Sc/osmosis-rust", optional = true }
chrono = "^0.4"
tokio = { version = "1.27.0", features = ["full"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rust_decimal = "1.12.2"
reqwest = "0.11.6"
hex = "0.4.3"
log = "0.4.14"
strum = "0.25.0"
strum_macros = "0.25.1"
regex.workspace = "1.6.0"
base64 = "0.21.2"
secp256k1 = { version = "0.27.0", default-features = false, features = ["alloc"] }
chain-registry = "0.1.0"
bitcoin = { version = "0.30.0", features = ["serde"] }
hkd32 = { version = "0.7.0", features = ["bip39", "mnemonic", "bech32"] }
ed25519-dalek = { version = "1", features = ["serde"] }
rust-crypto = "^0.2"
rand_core = { version = "0.6.4", default-features = false }
rand = "0.8.5"
thiserror = { version = "1.0.21" }
eyre = "0.6"
lazy_static = { version = "1.4.0"}
num-format = "0.4.4"
async-recursion = "1.0.4"
futures = "0.3.28"
[features]
default = ["cosmos","osmosis"]
cosmos = []
osmosis = ["osmosis-std"]