| # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO |
| # |
| # When uploading crates to the registry Cargo will automatically |
| # "normalize" Cargo.toml files for maximal compatibility |
| # with all versions of Cargo and also rewrite `path` dependencies |
| # to registry (e.g., crates.io) dependencies. |
| # |
| # If you are reading this file be aware that the original Cargo.toml |
| # will likely look very different (and much more reasonable). |
| # See Cargo.toml.orig for the original contents. |
| |
| [package] |
| edition = "2018" |
| name = "regalloc2" |
| version = "0.9.3" |
| authors = [ |
| "Chris Fallin <[email protected]>", |
| "Mozilla SpiderMonkey Developers", |
| ] |
| description = "Backtracking register allocator inspired from IonMonkey" |
| readme = "README.md" |
| license = "Apache-2.0 WITH LLVM-exception" |
| repository = "https://github.com/bytecodealliance/regalloc2" |
| |
| [profile.release] |
| debug = 2 |
| debug-assertions = true |
| overflow-checks = true |
| |
| [dependencies.hashbrown] |
| version = "0.13.2" |
| |
| [dependencies.libfuzzer-sys] |
| version = "0.4.2" |
| optional = true |
| |
| [dependencies.log] |
| version = "0.4.8" |
| default-features = false |
| |
| [dependencies.rustc-hash] |
| version = "1.1.0" |
| default-features = false |
| |
| [dependencies.serde] |
| version = "1.0.136" |
| features = [ |
| "derive", |
| "alloc", |
| ] |
| optional = true |
| default-features = false |
| |
| [dependencies.slice-group-by] |
| version = "0.3.0" |
| default-features = false |
| |
| [dependencies.smallvec] |
| version = "1.6.1" |
| features = ["union"] |
| |
| [features] |
| checker = [] |
| default = ["std"] |
| enable-serde = ["serde"] |
| fuzzing = [ |
| "libfuzzer-sys", |
| "checker", |
| "trace-log", |
| ] |
| std = [] |
| trace-log = [] |