-
Notifications
You must be signed in to change notification settings - Fork 677
/
Cargo.toml
37 lines (33 loc) · 894 Bytes
/
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
[workspace]
resolver = "2"
members = [
"stackslib",
"stacks-common",
"pox-locking",
"clarity",
"stx-genesis",
"libstackerdb",
"contrib/tools/relay-server",
"libsigner",
"stacks-signer",
"testnet/stacks-node"]
# Dependencies we want to keep the same between workspace members
[workspace.dependencies]
wsts = { version = "8.1", default-features = false }
ed25519-dalek = { version = "2.1.1", features = ["serde", "rand_core"] }
rand_core = "0.6"
rand = "0.8"
rand_chacha = "0.3.1"
# Use a bit more than default optimization for
# dev builds to speed up test execution
[profile.dev]
opt-level = 1
# Use release-level optimization for dependencies
# This slows down "first" builds on development environments,
# but won't impact subsequent builds.
[profile.dev.package."*"]
opt-level = 3
[profile.release]
debug = true
codegen-units = 1
lto = "fat"