From 416a4be06cf359aaf78fa1d2ef1048502fee456a Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 22 Jan 2024 22:32:49 +0100 Subject: [PATCH] remove old files --- lib/context-diff/Cargo.toml | 11 ----------- lib/ed-diff/Cargo.toml | 11 ----------- lib/ed-diff/fuzz/.gitignore | 4 ---- lib/ed-diff/fuzz/Cargo.toml | 26 -------------------------- lib/normal-diff/Cargo.toml | 11 ----------- lib/normal-diff/fuzz/.gitignore | 4 ---- lib/normal-diff/fuzz/Cargo.toml | 16 ---------------- lib/unified-diff/Cargo.toml | 11 ----------- 8 files changed, 94 deletions(-) delete mode 100644 lib/context-diff/Cargo.toml delete mode 100644 lib/ed-diff/Cargo.toml delete mode 100644 lib/ed-diff/fuzz/.gitignore delete mode 100644 lib/ed-diff/fuzz/Cargo.toml delete mode 100644 lib/normal-diff/Cargo.toml delete mode 100644 lib/normal-diff/fuzz/.gitignore delete mode 100644 lib/normal-diff/fuzz/Cargo.toml delete mode 100644 lib/unified-diff/Cargo.toml diff --git a/lib/context-diff/Cargo.toml b/lib/context-diff/Cargo.toml deleted file mode 100644 index 4c8f714..0000000 --- a/lib/context-diff/Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ -[package] -name = "context-diff" -version = "0.3.0" -edition = "2018" -description = "An implementation of the GNU unified diff format" -license = "MIT OR Apache-2.0" -repository = "https://github.com/notriddle/diffutils" -exclude = [ "fuzz" ] - -[dependencies] -diff = "0.1.10" diff --git a/lib/ed-diff/Cargo.toml b/lib/ed-diff/Cargo.toml deleted file mode 100644 index 0b2e90d..0000000 --- a/lib/ed-diff/Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ -[package] -name = "ed-diff" -version = "0.3.0" -edition = "2018" -description = "An implementation of the GNU unified diff format" -license = "MIT OR Apache-2.0" -repository = "https://github.com/notriddle/diffutils" -exclude = [ "fuzz" ] - -[dependencies] -diff = "0.1.10" diff --git a/lib/ed-diff/fuzz/.gitignore b/lib/ed-diff/fuzz/.gitignore deleted file mode 100644 index 572e03b..0000000 --- a/lib/ed-diff/fuzz/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ - -target -corpus -artifacts diff --git a/lib/ed-diff/fuzz/Cargo.toml b/lib/ed-diff/fuzz/Cargo.toml deleted file mode 100644 index 2f3460d..0000000 --- a/lib/ed-diff/fuzz/Cargo.toml +++ /dev/null @@ -1,26 +0,0 @@ - -[package] -name = "ed-diff-fuzz" -version = "0.0.0" -publish = false -edition = "2018" - -[package.metadata] -cargo-fuzz = true - -[dependencies] -libfuzzer-sys = "0.3" - -[dependencies.ed-diff] -path = ".." - -# Prevent this from interfering with workspaces -[workspace] -members = ["."] - -[[bin]] -name = "fuzz_ed" -path = "fuzz_targets/fuzz_ed.rs" -test = false -doc = false - diff --git a/lib/normal-diff/Cargo.toml b/lib/normal-diff/Cargo.toml deleted file mode 100644 index f5add71..0000000 --- a/lib/normal-diff/Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ -[package] -name = "normal-diff" -version = "0.3.0" -edition = "2018" -description = "An implementation of the GNU unified diff format" -license = "MIT OR Apache-2.0" -repository = "https://github.com/notriddle/diffutils" -exclude = [ "fuzz" ] - -[dependencies] -diff = "0.1.10" diff --git a/lib/normal-diff/fuzz/.gitignore b/lib/normal-diff/fuzz/.gitignore deleted file mode 100644 index 572e03b..0000000 --- a/lib/normal-diff/fuzz/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ - -target -corpus -artifacts diff --git a/lib/normal-diff/fuzz/Cargo.toml b/lib/normal-diff/fuzz/Cargo.toml deleted file mode 100644 index 4274bbe..0000000 --- a/lib/normal-diff/fuzz/Cargo.toml +++ /dev/null @@ -1,16 +0,0 @@ - -[package] -name = "normal-diff-fuzz" -version = "0.0.0" -publish = false -edition = "2021" - -[package.metadata] -cargo-fuzz = true - -[dependencies] -libfuzzer-sys = "0.3" - -# Prevent this from interfering with workspaces -[workspace] -members = ["."] diff --git a/lib/unified-diff/Cargo.toml b/lib/unified-diff/Cargo.toml deleted file mode 100644 index fa4f693..0000000 --- a/lib/unified-diff/Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ -[package] -name = "unified-diff" -version = "0.3.0" -edition = "2018" -description = "An implementation of the GNU unified diff format" -license = "MIT OR Apache-2.0" -repository = "https://github.com/notriddle/diffutils" -exclude = [ "fuzz" ] - -[dependencies] -diff = "0.1.10"