-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (76 loc) · 2.46 KB
/
Cargo.toml
File metadata and controls
84 lines (76 loc) · 2.46 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Copyright Rivtower Technologies LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
[package]
name = "executor"
version = "6.7.4"
authors = ["Yieazy <yuitta@163.com>", "Rivtower Technologies <contact@rivtower.com>"]
license = "Apache-2.0"
edition = "2021"
[dependencies]
tonic = "0.12"
prost = "0.13"
cita-database = "0.5"
tokio = { version = "1.41", features = ["full"] }
clap = { version = "4.5", features = ["derive", "cargo"] }
hex = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
bloomchain = "0.2"
lazy_static = "1.5"
time = "0.3"
cita_trie = "4.1"
byteorder = { version = "1.5", default-features = false }
bincode = "1.3"
rand = "0.8"
ethabi = "18.0"
parking_lot = "0.12"
ethbloom = "0.14"
sha3 = { version="0.10", optional=true }
tiny-keccak = { version="2.0", optional=true }
hashbrown = { version = "0.14", features = ["rayon"] } # locked by cita-vm
hasher = { version="0.1" }
ethereum-types = "0.14"
tower = "0.5"
cita-merklehash = "0.1"
cita-secp256k1 = "0.1"
cita-crypto = "0.1"
rlp = "0.5"
util = { package = "cita-util", version = "0.1" }
hashable = { package = "cita-hashable", version = "0.1" }
libproto = { git = "https://github.com/cita-cloud/libproto" }
tracing = "0.1"
tonic-reflection = "0.12"
tonic-web = "0.12"
cloud-util = { package = "cloud-util", git = "https://github.com/cita-cloud/cloud-common-rs" }
cita_cloud_proto = { package = "cita_cloud_proto", git = "https://github.com/cita-cloud/cloud-common-rs" }
[dependencies.cita-vm]
version = "0.4"
default-features = false
features = ["sha3hash"]
[features]
default = ["sm2", "sm3hash", "hashlib-keccak"]
secp256k1 = ["cita-crypto/secp256k1", "libproto/secp256k1"]
sm2 = ["cita-crypto/sm2", "libproto/sm2"]
sha3hash = ["hashable/sha3hash", "libproto/sha3hash"]
sm3hash = ["hashable/sm3hash", "libproto/sm3hash"]
hashlib-keccak = ["tiny-keccak"]
hashlib-sha3 = ["sha3"]
benches = []
[profile.release.package."*"]
# Set the default for dependencies.
debug = 0
[profile.release]
# Add debug info -- line tables only
debug = 1