-
Notifications
You must be signed in to change notification settings - Fork 289
/
Cargo.toml
64 lines (56 loc) · 1.74 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
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
[package]
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
name = "benchmarks"
publish = { workspace = true }
version = "2.0.2"
homepage = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
[dependencies]
anyhow = { workspace = true }
criterion = { workspace = true }
starcoin-crypto = { workspace = true }
forkable-jellyfish-merkle = { workspace = true }
futures = { workspace = true }
futures-timer = { workspace = true }
starcoin-logger = { workspace = true }
parking_lot = { workspace = true }
proptest = { workspace = true }
rand = { workspace = true }
rand_core = { default-features = false, workspace = true }
starcoin-account-api = { workspace = true }
starcoin-accumulator = { workspace = true }
starcoin-chain = { workspace = true }
starcoin-config = { workspace = true }
starcoin-consensus = { workspace = true }
starcoin-executor = { workspace = true }
starcoin-genesis = { workspace = true }
network-api = { workspace = true }
starcoin-service-registry = { workspace = true }
starcoin-state-store-api = { workspace = true }
starcoin-state-tree = { workspace = true }
starcoin-storage = { workspace = true }
starcoin-transaction-builder = { workspace = true }
starcoin-vm-types = { workspace = true }
starcoin-types = { workspace = true }
starcoin-executor-benchmark = { workspace = true }
starcoin-dag = { workspace = true }
[dev-dependencies]
[lib]
bench = false
[[bench]]
harness = false
name = "bench_storage"
[[bench]]
harness = false
name = "bench_chain"
[[bench]]
harness = false
name = "bench_state_tree"
[[bench]]
harness = false
name = "bench_vm"
[target."cfg(target_os=\"linux\")".dependencies]
pprof = { version = "0.10", features = ["flamegraph", "criterion"] }