Skip to content

[hakari] use final-excludes rather than traversal-excludes #8707

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .config/hakari.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ platforms = [
# Write out exact versions rather than a semver range. (Defaults to false.)
exact-versions = true

[traversal-excludes]
# Use final-excludes rather than traversal-excludes because we'd like to unify
# features across builds performed by rust-analyzer (with `--workspace`) and
# those performed on the command line (without `--workspace`).
[final-excludes]
workspace-members = [
# Exclude dev-tools-common and xtask because they need to be built quickly.
"dev-tools-common",
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ libc = { version = "0.2.174", features = ["extra_traits"] }
log = { version = "0.4.27", default-features = false, features = ["kv_unstable", "std"] }
managed = { version = "0.8.0", default-features = false, features = ["alloc", "map"] }
memchr = { version = "2.7.4" }
newtype-uuid = { version = "1.2.4" }
newtype-uuid = { version = "1.2.4", features = ["proptest1", "schemars08", "serde", "v4"] }
nix = { version = "0.29.0", features = ["feature", "net", "uio"] }
nom = { version = "7.1.3" }
num-bigint-dig = { version = "0.8.4", default-features = false, features = ["i128", "prime", "serde", "u64_digit", "zeroize"] }
Expand All @@ -100,6 +100,7 @@ postgres-types = { version = "0.2.9", default-features = false, features = ["wit
ppv-lite86 = { version = "0.2.20", default-features = false, features = ["simd", "std"] }
predicates = { version = "3.1.3" }
proc-macro2 = { version = "1.0.95" }
proptest = { version = "1.7.0" }
rand-274715c4dabd11b0 = { package = "rand", version = "0.9.1" }
rand-c38e5c1d305a1b54 = { package = "rand", version = "0.8.5" }
rand_chacha-274715c4dabd11b0 = { package = "rand_chacha", version = "0.9.0", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -216,7 +217,7 @@ libc = { version = "0.2.174", features = ["extra_traits"] }
log = { version = "0.4.27", default-features = false, features = ["kv_unstable", "std"] }
managed = { version = "0.8.0", default-features = false, features = ["alloc", "map"] }
memchr = { version = "2.7.4" }
newtype-uuid = { version = "1.2.4" }
newtype-uuid = { version = "1.2.4", features = ["proptest1", "schemars08", "serde", "v4"] }
nix = { version = "0.29.0", features = ["feature", "net", "uio"] }
nom = { version = "7.1.3" }
num-bigint-dig = { version = "0.8.4", default-features = false, features = ["i128", "prime", "serde", "u64_digit", "zeroize"] }
Expand All @@ -236,6 +237,7 @@ postgres-types = { version = "0.2.9", default-features = false, features = ["wit
ppv-lite86 = { version = "0.2.20", default-features = false, features = ["simd", "std"] }
predicates = { version = "3.1.3" }
proc-macro2 = { version = "1.0.95" }
proptest = { version = "1.7.0" }
rand-274715c4dabd11b0 = { package = "rand", version = "0.9.1" }
rand-c38e5c1d305a1b54 = { package = "rand", version = "0.8.5" }
rand_chacha-274715c4dabd11b0 = { package = "rand_chacha", version = "0.9.0", default-features = false, features = ["std"] }
Expand Down
Loading