mirror of
https://github.com/servo/servo.git
synced 2025-08-30 09:38:19 +01:00
Use workspace.default-members to specify default crates for 'cargo build'
… and 'cargo test', etc. Include Servo and its unit tests, but not Stylo because that would try to compile the style crate with incompatible feature flags: https://github.com/rust-lang/cargo/issues/4463 `workspace.default-members` was added in https://github.com/rust-lang/cargo/pull/4743. Older Cargo versions ignore it.
This commit is contained in:
parent
2a5c4133f9
commit
1f2b66e2d7
3 changed files with 7 additions and 5 deletions
|
@ -8,6 +8,10 @@ members = [
|
|||
|
||||
"ports/cef",
|
||||
]
|
||||
default-members = [
|
||||
"ports/servo",
|
||||
"tests/unit/*",
|
||||
]
|
||||
exclude = [".cargo"]
|
||||
|
||||
[profile.dev]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue