#7626 changed the cranelift-codegen features from default to host-arch in crates/cranelift/Cargo.toml.
Before this change, I could enable trace by adding trace-log to the features' default list in cranelift/codegen/Cargo.toml.
But now the old way doesn't work, trace-log should be added to crates/cranelift/Cargo.toml like this:
cranelift-codegen = { workspace = true, features = ["host-arch", "trace-log"] }
is that expected behavior?
#7626 changed the cranelift-codegen features from
defaulttohost-archincrates/cranelift/Cargo.toml.Before this change, I could enable trace by adding
trace-logto the features' default list incranelift/codegen/Cargo.toml.But now the old way doesn't work,
trace-logshould be added tocrates/cranelift/Cargo.tomllike this:is that expected behavior?