moved fuzz to a top-level-directory

This commit is contained in:
Benjamin Fry 2022-02-05 10:39:29 -08:00 committed by Dirkjan Ochtman
parent 4a728dffcf
commit 4c408e3307
5 changed files with 7 additions and 7 deletions

4
.gitignore vendored
View File

@ -20,3 +20,7 @@
*.rs.bk
.rls.toml
rls/**
# ignore fuzzing corpus
fuzz/artifacts/**
fuzz/corpus/**

View File

@ -13,6 +13,8 @@ members = ["crates/proto",
"crates/openssl",
"crates/rustls"]
exclude = ["fuzz"]
[patch.crates-io]
# tokio = { path = "../tokio/tokio" }
# mio = { git = "https://github.com/tokio-rs/mio.git" }

View File

@ -10,13 +10,7 @@ cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
[dependencies.trust-dns-proto]
path = ".."
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
trust-dns-proto = { path = "../crates/proto"}
[[bin]]
name = "message"