Skip to content

Commit 62bcbc8

Browse files
authored
Merge pull request #26 from payjoin/cargo-workspace
cargo workspace layout
2 parents a47e617 + 88d269e commit 62bcbc8

3 files changed

Lines changed: 17 additions & 8 deletions

File tree

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
[package]
2-
name = "concurrent-psbt"
1+
[workspace]
2+
members = ["crates/concurrent-psbt"]
3+
resolver = "2"
4+
5+
[workspace.package]
36
version = "0.1.0"
4-
edition = "2024"
57

6-
[features]
7-
default = ["unit-tests", "prop-tests"]
8-
unit-tests = []
9-
prop-tests = []
8+
[workspace.metadata.crane]
9+
name = "concurrent-psbt"
1010

11-
[lints.rust]
11+
[workspace.lints.rust]
1212
unexpected_cfgs = { level = "deny", check-cfg = ['cfg(coverage_nightly)'] }

crates/concurrent-psbt/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "concurrent-psbt"
3+
version.workspace = true
4+
edition = "2024"
5+
6+
[features]
7+
default = ["unit-tests", "prop-tests"]
8+
unit-tests = []
9+
prop-tests = []

0 commit comments

Comments
 (0)