librustzcash/Cargo.toml

27 lines
748 B
TOML
Raw Normal View History

2018-08-23 13:10:04 -07:00
[workspace]
members = [
2020-06-25 17:53:07 -07:00
"components/equihash",
"components/zcash_address",
2021-03-19 13:56:20 -07:00
"components/zcash_note_encryption",
"zcash_client_backend",
"zcash_client_sqlite",
"zcash_extensions",
2020-03-03 17:02:31 -08:00
"zcash_history",
"zcash_primitives",
"zcash_proofs",
2018-08-23 13:10:04 -07:00
]
[profile.release]
lto = true
panic = 'abort'
codegen-units = 1
[patch.crates-io]
# To resolve the funty mess. Removing this probably blocks on a nom 7 release.
# - https://github.com/Geal/nom/issues/1302
# - https://github.com/Geal/nom/pull/1304
nom = { git = "https://github.com/myrrlyn/nom.git", rev = "d6b81f5303b0a347726e1f3f428751f376e7b771" }
# In development.
orchard = { git = "https://github.com/zcash/orchard.git", rev = "87a3d52641df732e4d0661699e7b32ad1299cd75" }