1234567891011121314151617181920212223242526272829303132 |
- [profile.release]
- lto = true
- [profile.release.package.anchor-cli]
- codegen-units = 1
- [workspace]
- members = [
- "avm",
- "cli",
- "client",
- "idl",
- "lang",
- "lang/attribute/*",
- "lang/derive/*",
- "lang/syn",
- "spl",
- ]
- exclude = [
- "tests/swap/deps/openbook-dex",
- "tests/cfo/deps/openbook-dex",
- ]
- resolver = "2"
- # TODO: Remove once there is a new compatible release on crates.io
- #
- # The latest version of this crate on crates.io depends on `curve25519-dalek ^3.2.1` which
- # conflicts with `solana-* ^2.1`.
- #
- # Details: https://github.com/solana-labs/solana-program-library/pull/7416#discussion_r1824643243
- [patch.crates-io]
- spl-token-confidential-transfer-proof-generation = { git = "https://github.com/solana-labs/solana-program-library", rev = "8e0ed0a" }
|