Cargo.toml 789 B

1234567891011121314151617181920212223242526272829303132
  1. [profile.release]
  2. lto = true
  3. [profile.release.package.anchor-cli]
  4. codegen-units = 1
  5. [workspace]
  6. members = [
  7. "avm",
  8. "cli",
  9. "client",
  10. "idl",
  11. "lang",
  12. "lang/attribute/*",
  13. "lang/derive/*",
  14. "lang/syn",
  15. "spl",
  16. ]
  17. exclude = [
  18. "tests/swap/deps/openbook-dex",
  19. "tests/cfo/deps/openbook-dex",
  20. ]
  21. resolver = "2"
  22. # TODO: Remove once there is a new compatible release on crates.io
  23. #
  24. # The latest version of this crate on crates.io depends on `curve25519-dalek ^3.2.1` which
  25. # conflicts with `solana-* ^2.1`.
  26. #
  27. # Details: https://github.com/solana-labs/solana-program-library/pull/7416#discussion_r1824643243
  28. [patch.crates-io]
  29. spl-token-confidential-transfer-proof-generation = { git = "https://github.com/solana-labs/solana-program-library", rev = "8e0ed0a" }