From 719fbbed2ab7d466dbb07097b84e349603871750 Mon Sep 17 00:00:00 2001 From: arya2 Date: Tue, 27 Jun 2023 14:44:51 -0400 Subject: [PATCH] rm depends/zcash/Cargo.toml --- depend/zcash/Cargo.toml | 120 ---------------------------------------- 1 file changed, 120 deletions(-) delete mode 100644 depend/zcash/Cargo.toml diff --git a/depend/zcash/Cargo.toml b/depend/zcash/Cargo.toml deleted file mode 100644 index d6ca43611..000000000 --- a/depend/zcash/Cargo.toml +++ /dev/null @@ -1,120 +0,0 @@ -[package] -name = "librustzcash" -description = "Rust FFI used by the zcashd binary. Not an official API." -version = "0.2.0" -authors = [ - "Sean Bowe ", - "Jay Graber", - "Jack Grigg ", - "Daira Hopwood ", - "Ying Tong Lai ", - "Simon Liu", - "Kris Nuttycombe ", - "Greg Pfeil ", - "Larry Ruane ", - "Steven Smith " -] -homepage = "https://github.com/zcash/zcash" -repository = "https://github.com/zcash/zcash" -readme = "README.md" -license = "MIT OR Apache-2.0" -edition = "2018" -rust-version = "1.69" - -[package.metadata.vet] -store = { path = "./qa/supply-chain" } - -[lib] -name = "rustzcash" -path = "src/rust/src/rustzcash.rs" -crate-type = ["staticlib"] - -[[bin]] -name = "zcash-inspect" -path = "src/rust/bin/inspect/main.rs" - -[[bin]] -name = "zcashd-wallet-tool" -path = "src/rust/bin/wallet_tool.rs" - -[dependencies] -bellman = "0.14" -blake2b_simd = "1" -blake2s_simd = "1" -bls12_381 = "0.8" -bridgetree = "0.3" -byteorder = "1" -crossbeam-channel = "0.5" -group = "0.13" -incrementalmerkletree = "0.4" -libc = "0.2" -jubjub = "0.10" -memuse = "0.2" -nonempty = "0.7" -orchard = "0.5" -secp256k1 = "0.26" -subtle = "2.2" -rand_core = "0.6" -tracing = "0.1" -tracing-core = "0.1" -tracing-appender = "0.2" -zcash_address = "0.3" -zcash_encoding = "0.2" -zcash_history = "0.3" -zcash_note_encryption = "0.4" -zcash_primitives = { version = "0.12", features = ["temporary-zcashd", "transparent-inputs"] } -zcash_proofs = { version = "0.12", features = ["directories"] } -ed25519-zebra = "3.1" -zeroize = "1.4.2" - -# Rust/C++ interop -# The version needs to match depends/packages/native_cxxbridge.mk -cxx = { version = "=1.0.95", features = ["c++17"] } - -# Rust threading -rayon = "1.5" - -# Metrics -ipnet = "2" -metrics = "0.21" -metrics-exporter-prometheus = "0.12" -metrics-util = { version = "0.15", default-features = false, features = ["layer-filter"] } -tokio = { version = "1", features = ["rt", "net", "time"] } - -# General tool dependencies -gumdrop = "0.8" - -# zcash-inspect tool -bech32 = "0.9" -equihash = "0.2" -hex = "0.4" -lazy_static = "1.4" -serde = "1.0" -serde_json = "1.0" -sha2 = "0.10" -uint = "0.9" - -# Wallet tool -# (also depends on tracing, and tracing-subscriber with "env-filter" and "fmt" features) -anyhow = "1.0" -backtrace = "0.3" -clearscreen = "2.0" -rand = "0.8" -secrecy = "0.8" -thiserror = "1" -time = { version = "0.3", features = ["formatting", "macros"] } - -[dev-dependencies] -incrementalmerkletree = { version = "0.4", features = ["test-dependencies"] } -proptest = "1.0.0" -zcash_primitives = { version = "0.12", features = ["temporary-zcashd", "transparent-inputs", "test-dependencies"] } - -[dependencies.tracing-subscriber] -version = "0.3" -default-features = false -features = ["ansi", "env-filter", "fmt", "time"] - -[profile.release] -lto = 'thin' -panic = 'abort' -codegen-units = 1