forked from cita-cloud/executor_chaincode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 666 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 666 Bytes
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 = "executor"
version = "0.2.0"
authors = ["Rivtower Technologies <contact@rivtower.com>"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
log = "*"
log4rs = { version = "*", features = ["gzip"] }
clap = "3.0.0-beta.2"
git-version = "*"
tonic = "*"
prost = "*"
prost-types = "*"
lazy_static = "*"
futures = "*"
tokio = { version = "*", features = ["full"] }
async-stream = "*"
cita_cloud_proto = { git = "https://github.com/cita-cloud/cita_cloud_proto" }
parking_lot = "*"
thiserror = "*"
hex = "*"
rust-crypto = "*"
serde = "*"
bincode = "*"
bytes = "*"
[build-dependencies]
tonic-build = { version = "*" }
[dev-dependencies]
tempdir = "*"