Cargo.toml 563 B

123456789101112131415161718192021
  1. [package]
  2. name = "bench"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. [features]
  9. no-entrypoint = []
  10. cpi = ["no-entrypoint"]
  11. [dependencies]
  12. anchor-lang = { path = "../../../../lang" }
  13. anchor-spl = { path = "../../../../spl" }
  14. # TODO: Remove this and store lock files for each version instead.
  15. # Latest solana version(1.14.17) as of 2023-05-01 comes with rustc 1.62.0-dev but MSRV for latest
  16. # version of this crate is 1.64.0. See https://github.com/solana-labs/solana/pull/31418
  17. winnow = "=0.4.1"