Cargo.toml 416 B

123456789101112131415
  1. [package]
  2. name = "create-token-program"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. borsh = "0.9.3"
  7. borsh-derive = "0.9.1"
  8. solana-program = "2.0"
  9. spl-token = { version = "4.0.0", features = [ "no-entrypoint" ] }
  10. spl-associated-token-account = { version = "2.0.0", features = [ "no-entrypoint" ] }
  11. mpl-token-metadata = { version = "1.11", features = [ "no-entrypoint" ] }
  12. [lib]
  13. crate-type = ["cdylib", "lib"]