Add all packages with Cargo.toml's to the workspace

The primary reason for this is so that Dependabot will auto-detect them and
watch their dependencies for upgrades and known security vulnerabilities, but will
also automatically run all tests for the workspace packages with 'cargo test' without
remembering to include '--all', and build each package with 'cargo build'. I've
included 'test-data' here mostly because we want all dependencies inter-consistent
when possible even for test data/code, even if that means 'test-data' gets built
during 'cargo build --release'.
This commit is contained in:
Deirdre Connolly 2019-05-24 16:27:54 -04:00
parent 73a4676fc3
commit 3a77302b59
1 changed files with 17 additions and 0 deletions

View File

@ -46,6 +46,23 @@ name = "pzec"
members = [
"bencher",
"chain",
"db",
"import",
"keys",
"logs",
"message",
"miner",
"network",
"p2p",
"primitives",
"rpc",
"script",
"serialization",
"serialization_derive",
"storage",
"sync",
"test-data",
"verification",
]
[patch.crates-io]