Browse Source

Enable debugging features for `cranelift-codegen` in `wasmtime-cli` dev dependencies (#9179)

This allows, for example, getting `trace!` logs from Cranelift out of
`wasmtime-cli` tests, rather than needing to modify `cranelift-codegen`'s
default features or whatever.
pull/9040/merge
Nick Fitzgerald 2 months ago
committed by GitHub
parent
commit
03003c8092
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      Cargo.toml

2
Cargo.toml

@ -111,7 +111,7 @@ test-programs-artifacts = { workspace = true }
bytesize = "1.3.0"
wit-component = { workspace = true }
cranelift-filetests = { workspace = true }
cranelift-codegen = { workspace = true }
cranelift-codegen = { workspace = true, features = ["disas", "trace-log", "timing"] }
cranelift-reader = { workspace = true }
toml = { workspace = true }
similar = { workspace = true }

Loading…
Cancel
Save