We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to include zcash source code in order to compile and wrap it. But each strategy has downsides:
submodules
cargo package
Cargo.toml
zcash
subtree
Come up with a better way to solve this and implement it.
Ideas:
sparse-checkout
src
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We need to include zcash source code in order to compile and wrap it. But each strategy has downsides:
submodules
prevents us from packaging the crate becausecargo package
ignores subfolders withCargo.toml
, andzcash
has one in the rootsubtree
works but requires us using merge commits (which we try to avoid in our repos), sincesubtree
relies on them to workCome up with a better way to solve this and implement it.
Ideas:
submodules
work withsparse-checkout
so that we only checkout thesrc
subfolder (which is what we need, and it does not contain aCargo.toml
Cargo.toml
before packaging the crateThe text was updated successfully, but these errors were encountered: