forked from turbofish-org/orga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 970 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
[package]
name = "orga"
version = "0.1.10"
authors = ["Matt Bell <mappum@gmail.com>"]
edition = "2018"
description = "State machine engine"
license = "MIT"
[dependencies]
failure = "0.1.8"
abci2 = { git = "https://github.com/nomic-io/abci2", rev = "f134b52f4d4a5b1704f0d1813cb901252cc3ed02", version = "0.1.2", optional = true }
merk = { git = " https://github.com/nomic-io/merk", rev = "104535c681610bb1a7d687de45ea1040aab590fd", version = "1.0.0", optional = true }
tendermint-rpc = { version = "0.15.0", features = ["client"], optional = true }
tendermint = { version = "0.15.0", optional = true }
orga-macros = { path = "macros", version = "0.1.0" }
seq-macro = "0.1.4"
log = "0.4.8"
blocking = "0.4.7"
ed = "0.1.3"
[package.metadata.docs.rs]
features = ["abci", "merk"]
[features]
abci = ["abci2", "tendermint", "tendermint-rpc"]
[[example]]
name = "counter"
required-features = ["abci"]
[[example]]
name = "merk_counter"
required-features = ["abci", "merk"]