forked from informalsystems/tendermint-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 1.1 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
[package]
name = "tendermint-test"
description = "Tendermint workspace tests and common utilities for testing."
version = "0.36.0"
edition = "2021"
license = "Apache-2.0"
categories = ["development", "test", "tools"]
repository = "https://github.com/informalsystems/tendermint-rs"
keywords = ["blockchain", "tendermint", "testing"]
readme = "README.md"
authors = ["Alexander Simmerl <[email protected]>"]
[lib]
test = true
[dev-dependencies]
curve25519-dalek-ng = { version = "4", default-features = false }
ed25519-consensus = { version = "2", default-features = false }
flex-error = { version = "0.4.4", default-features = false }
flume = { version = "0.11", default-features = false }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
readwrite = { version = "0.2.0", default-features = false }
subtle-encoding = { version = "0.5", default-features = false }
tendermint = { path = "../tendermint", default-features = false }
tendermint-p2p = { path = "../p2p", default-features = false }
tendermint-proto = { path = "../proto", default-features = false }