-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
63 lines (55 loc) · 1.05 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
[package]
name = "chronos"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
".",
"crates/accumulator",
"crates/vlc",
"crates/hlc",
"crates/hvlc",
"crates/cops",
"crates/vrf",
"crates/crypto",
"crates/enclaves",
"crates/gossip",
"crates/types",
"demos/test_conflict",
"demos/coll_tx",
"demos/vlc_dag",
"demos/tee_vlc",
"demos/test_vlc_net",
]
[profile.dev]
opt-level = 1
debug = true
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = "z"
debug = true
lto = true
strip = true
incremental = true
[profile.bench]
debug = true
[profile.artifact]
inherits = "release"
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
async-trait = "0.1.74"
axum = "0.7.1"
borsh = { version = "1.2.0", features = ["derive"] }
ethnum = "1.5.0"
rand = "0.8.5"
secp256k1 = { version = "0.28.0", features = [
"hashes",
"rand",
"global-context",
] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-util = "0.7.10"
[lib]
name = "chronos"
path = "src/lib.rs"