Files
stacks-puppet-node/Cargo.toml
Aaron Blankstein 207cb690fe feat: naka miner acts as signer set coordinator during block signing
* Replaces msg_id u32 with an enum for message identification
* Adds an additional slot for miner messages
* Adds a sync channel for listening to StackerDB events
* Adds a StackerDBs method for pushing a chunk locally and emitting event
* Uses a new message type to store DKG results, to be read by miners to instantiate coordinator
* Uses a test signing channel for nakamoto integration tests
* Currently builds with a branch of wsts
2024-03-14 09:41:49 -05:00

41 lines
1.0 KiB
TOML

[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]
ed25519-dalek = { version = "2.1.1", features = ["serde", "rand_core"] }
hashbrown = "0.14.3"
rand_core = "0.6"
rand = "0.8"
rand_chacha = "0.3.1"
tikv-jemallocator = "0.5.4"
# wsts = { version = "8.1", default-features = false }
wsts = { git = "https://github.com/stacks-network/wsts.git", branch = "feat/public-sign-ids" }
# 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"