Cargo.toml 617 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "cutils"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "cutils"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. no-log-ix-name = []
  13. cpi = ["no-entrypoint"]
  14. default = []
  15. [dependencies]
  16. anchor-lang = "0.26.0"
  17. solana-program = "1.14.18"
  18. spl-account-compression = { version="0.1.8", features = ["cpi"] }
  19. mpl-bubblegum = { version = "0.7.0", features = ["no-entrypoint", "cpi"] }
  20. # Added due to anchor and solana-cli wonkyness as of late
  21. getrandom = { version = "0.2.10", features = ["custom"] }
  22. winnow = "=0.4.1"
  23. toml_datetime = "=0.6.1"