diff --git a/Cargo.toml b/Cargo.toml index 6f1db3dd..04c64569 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,5 @@ members = [ "zebra-consensus", "zebra-rpc", "zebra-client", - "zebra-reactor", "zebrad", -] \ No newline at end of file +] diff --git a/zebra-reactor/Cargo.toml b/zebra-reactor/Cargo.toml deleted file mode 100644 index 9d1bd752..00000000 --- a/zebra-reactor/Cargo.toml +++ /dev/null @@ -1,10 +0,0 @@ -[package] -name = "zebra-reactor" -license = "MIT OR Apache-2.0" -version = "0.1.0" -authors = ["Zcash Foundation "] -edition = "2018" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] diff --git a/zebra-reactor/src/lib.rs b/zebra-reactor/src/lib.rs deleted file mode 100644 index 31e1bb20..00000000 --- a/zebra-reactor/src/lib.rs +++ /dev/null @@ -1,7 +0,0 @@ -#[cfg(test)] -mod tests { - #[test] - fn it_works() { - assert_eq!(2 + 2, 4); - } -}