-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
60 lines (54 loc) · 1.54 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
52
53
54
55
56
57
58
59
60
[package]
name = "abci-rs"
version = "0.11.3"
authors = ["Devashish Dixit <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A Rust crate for creating ABCI applications"
homepage = "https://github.com/devashishdxt/abci-rs"
repository = "https://github.com/devashishdxt/abci-rs"
categories = ["network-programming"]
keywords = ["blockchain", "tendermint", "abci"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md"]
edition = "2021"
[lib]
name = "abci"
path = "src/lib.rs"
[package.metadata.docs.rs]
features = ["doc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = { version = "1.12.0", features = ["unstable"], optional = true }
async-trait = "0.1.57"
bytes = "1.2.1"
cfg-if = "1.0.0"
integer-encoding = "3.0.4"
prost = "0.11.0"
prost-types = "0.11.1"
smol = { version = "1.2.5", optional = true }
tendermint-proto = "0.25.0"
tokio = { version = "1.21.2", features = [
"io-util",
"net",
"rt",
"rt-multi-thread",
"sync",
], optional = true }
tracing = { version = "0.1.37", features = ["log"] }
[dev-dependencies]
mock-io = { version = "0.3.2", default-features = false, features = [
"async-tokio",
] }
tokio = { version = "1.21.2", features = ["macros", "time"] }
tracing-subscriber = { version = "0.3.16", default-features = false, features = [
"fmt",
"ansi",
] }
[features]
default = ["async-api", "sync-api", "use-tokio"]
doc = []
async-api = []
sync-api = []
use-async-std = ["async-std"]
use-smol = ["smol"]
use-tokio = ["tokio"]