Add an overlap checker to ISLE (#4906)

https://github.com/bytecodealliance/wasmtime/pull/4906

Co-authored-by: Jamey Sharp <jsharp@fastly.com>
This commit is contained in:
Trevor Elliott
2022-09-21 14:07:59 -07:00
committed by GitHub
parent 6f50ddaaf2
commit b167172715
6 changed files with 380 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ version = "0.89.0"
[dependencies]
log = { version = "0.4", optional = true }
miette = { version = "5.1.0", optional = true }
rayon = "^1.5"
[dev-dependencies]
tempfile = "3"
@@ -18,5 +19,6 @@ tempfile = "3"
[features]
default = []
overlap-errors = []
logging = ["log"]
miette-errors = ["miette"]