Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jbuckmccready/solana_zeroize_dep_example
Example repo demonstrating problem with Solana dependencies
https://github.com/jbuckmccready/solana_zeroize_dep_example
Last synced: 26 days ago
JSON representation
Example repo demonstrating problem with Solana dependencies
- Host: GitHub
- URL: https://github.com/jbuckmccready/solana_zeroize_dep_example
- Owner: jbuckmccready
- Created: 2023-09-20T03:54:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-20T03:54:52.000Z (over 1 year ago)
- Last Synced: 2024-10-15T13:59:16.865Z (2 months ago)
- Language: Rust
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Example showing `zeroize` transitive dependency problem caused by Solana dependencies.
`async-nats` depends on `signatory` which depends on `zeroize = "^1.4"`. `curve25519-dalek` `v3.x`
depends on `zeroize = ">=1, <1.4"` and `aes-gcm-siv` `v0.10.x` depends on `zeroize = ">=1, <1.4"`.Try to run `cargo build` or `cargo check` and you'll see the conflict that arises.
Updating `curve25519-dalek` to `v4.x` and `aes-gcm-siv` to `v0.11.x` will eliminate the problem of
depending on `zeroize = "<1.4"`.Created as an example for this issue: https://github.com/solana-labs/solana/issues/26688