-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
43 lines (40 loc) · 1.33 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
[package]
name = "tendermint-basecoin"
version = "0.2.0"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
categories = ["cryptography::cryptocurrencies"]
repository = "https://github.com/informalsystems/basecoin-rs"
authors = ["Informal Systems <[email protected]>"]
description = """
An example Tendermint ABCI application that integrates with ibc-rs, making
use of tendermint-rs.
"""
[dependencies]
base64 = { version = "0.13", default-features = false, features = ["alloc"] }
cosmrs = "0.7.0"
flex-error = { version = "0.4.2", features = ["eyre_tracer"] }
ibc = "=0.16.0"
ibc-proto = { version = "=0.19.0", default-features = false, features = ["server"] }
ics23 = { version = "=0.8.0-alpha", default-features = false }
prost = { version = "0.10", default-features = false }
serde = "1.0"
serde_json = "1.0"
sha2 = "0.10.2"
structopt = "0.3.21"
tendermint = "=0.23.7"
tendermint-abci = "=0.23.7"
tendermint-proto = "=0.23.7"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.7"
tracing = "0.1.26"
tracing-subscriber = "0.2.18"
[dev-dependencies]
bytes = "1.0.1"
lazy_static = "1.4.0"
proptest = "*"
rand = "*"
[patch.crates-io]
ibc = { git = "https://github.com/informalsystems/ibc-rs.git", rev = "e8c98d4" }
ibc-proto = { git = "https://github.com/informalsystems/ibc-rs.git", rev = "e8c98d4" }