mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
This commit also contains the following changes: - Make `ThresholdSignature` wrapper around `wsts::common::signature` in order to use `verify()` - Eliminate `p256k1` from `Cargo.toml` - Use a common version of `wsts` for all workspace members I had to update all workspace members, including `stacks-signer`, because it wouldn't build if `stackslib` was using a different version of `wsts`
33 lines
698 B
TOML
33 lines
698 B
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]
|
|
wsts = "5.0"
|
|
|
|
# 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
|
|
|