Skip to content

Commit

Permalink
Add support for targeting win-arm64
Browse files Browse the repository at this point in the history
The `ring` crate doesn't natively support win-arm64 yet. But a fork adds that support [as described here][workaround].

[workaround]: briansmith/ring#1514 (comment)
  • Loading branch information
AArnott committed Sep 8, 2023
1 parent aed72a2 commit ad57133
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ build_utils = { path = "./build_utils" }
debug = false

[patch.crates-io]
ring = { git = "https://github.com/awakecoding/ring", branch = "0.16.20_alpha" }
incrementalmerkletree = { git = "https://github.com/zcash/incrementalmerkletree", rev = "bae25ad89c0c192bee625252d2d419bd56638e48" }
shardtree = { git = "https://github.com/zcash/incrementalmerkletree", rev = "bae25ad89c0c192bee625252d2d419bd56638e48" }

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ cargo build --release

This will launch the interactive prompt. Type `help` to get a list of commands.

## Library:
Check our Cargo.toml file for a `patch` section. We usually have one.
Because patching only applies at the top level of a project, in order to use this library as a dependency, copy the `[patch.crates-io]` section of `Cargo.toml` into your own workspace `Cargo.toml`

## Notes:
* If you want to run your own server, please see [zingo lightwalletd](https://github.com/zingolabs/lightwalletd), and then run `./zingo-cli --server http://127.0.0.1:9067`
* The default log file is in `~/.zcash/zingo-wallet.debug.log`. A default wallet is stored in `~/.zcash/zingo-wallet.dat`
Expand Down

0 comments on commit ad57133

Please sign in to comment.