diff --git a/backend/Cargo.toml b/backend/Cargo.toml index cfb865a0..c405cf52 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -2,7 +2,6 @@ resolver = "2" members = [ "reconcile", - "fuzz", "sync_server", "sync_lib" ] diff --git a/backend/fuzz/.gitignore b/backend/fuzz/.gitignore deleted file mode 100644 index 1a45eee7..00000000 --- a/backend/fuzz/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -target -corpus -artifacts -coverage diff --git a/backend/fuzz/Cargo.toml b/backend/fuzz/Cargo.toml deleted file mode 100644 index d764ba40..00000000 --- a/backend/fuzz/Cargo.toml +++ /dev/null @@ -1,25 +0,0 @@ -[package] -name = "reconcile-fuzz" -version.workspace = true -edition.workspace = true -authors.workspace = true -license.workspace = true -repository.workspace = true -publish = false - -[package.metadata] -cargo-fuzz = true - -[dependencies] -libfuzzer-sys = "0.4" -reconcile = { path = "../reconcile" } - -[[bin]] -name = "reconcile" -path = "fuzz_targets/reconcile.rs" -test = false -doc = false -bench = false - -[lints] -workspace = true diff --git a/backend/fuzz/fuzz_targets/reconcile.rs b/backend/fuzz/fuzz_targets/reconcile.rs deleted file mode 100644 index b30d9f57..00000000 --- a/backend/fuzz/fuzz_targets/reconcile.rs +++ /dev/null @@ -1,8 +0,0 @@ -#![no_main] - -use libfuzzer_sys::fuzz_target; - -fuzz_target!(|texts: (String, String, String)| { - let (original, left, right) = texts; - let _ = reconcile::reconcile(&original, &left, &right); -});