-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 853 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (26 loc) · 853 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
[package]
name = "tron-executor"
publish.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Block-level orchestrator. Validates a block's structure and applies its transactions via the tron-actuator dispatch table."
[dependencies]
tron-crypto = { path = "../tron-crypto" }
tron-proto = { path = "../tron-proto" }
tron-types = { path = "../tron-types" }
tron-chainbase = { path = "../tron-chainbase" }
tron-actuator = { path = "../tron-actuator" }
tron-tvm = { path = "../tron-tvm" }
tron-consensus = { path = "../tron-consensus" }
prost.workspace = true
prost-types.workspace = true
thiserror.workspace = true
hex.workspace = true
rayon.workspace = true
tracing.workspace = true
[dev-dependencies]
hex.workspace = true
hex-literal.workspace = true
mimalloc = "0.1"