27 lines
802 B
TOML
27 lines
802 B
TOML
[workspace]
|
|
members = [
|
|
"components/equihash",
|
|
"components/f4jumble",
|
|
"components/zcash_address",
|
|
"components/zcash_encoding",
|
|
"components/zcash_note_encryption",
|
|
"zcash_client_backend",
|
|
"zcash_client_sqlite",
|
|
"zcash_extensions",
|
|
"zcash_history",
|
|
"zcash_primitives",
|
|
"zcash_proofs",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = 'abort'
|
|
codegen-units = 1
|
|
|
|
[patch.crates-io]
|
|
# In development.
|
|
orchard = { git = "https://github.com/zcash/orchard.git", rev = "8c018eff7e795b16fc68aed22d0fd4eebe2710ec" }
|
|
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree.git", rev = "b7bd6246122a6e9ace8edb51553fbf5228906cbb" }
|
|
zcash_encoding = { path = "components/zcash_encoding" }
|
|
zcash_note_encryption = { path = "components/zcash_note_encryption" }
|