Skip to content

Commit

Permalink
Move the fuzz directory into main workspace
Browse files Browse the repository at this point in the history
This'll help us track dependencies and head off issues like bytecodealliance#721
  • Loading branch information
alexcrichton committed Dec 16, 2019
1 parent 321a7a1 commit ca36e40
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
21 changes: 21 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ members = [
"crates/fuzzing",
"crates/misc/rust",
"crates/misc/py",
"fuzz",
]

[features]
Expand Down
8 changes: 4 additions & 4 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ wasmtime-fuzzing = { path = "../crates/fuzzing", features = ["env_logger"] }
wasmtime-jit = { path = "../crates/jit" }
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }

# Prevent this from interfering with workspaces
[workspace]
members = ["."]

[[bin]]
name = "compile"
path = "fuzz_targets/compile.rs"
test = false

[[bin]]
name = "instantiate"
path = "fuzz_targets/instantiate.rs"
test = false

[[bin]]
name = "instantiate_translated"
path = "fuzz_targets/instantiate_translated.rs"
test = false

[[bin]]
name = "api_calls"
path = "fuzz_targets/api_calls.rs"
test = false

0 comments on commit ca36e40

Please sign in to comment.