1234567891011121314151617181920212223 |
- [package]
- name = "token-2022-basic-anchor"
- version = "0.1.0"
- description = "Created with Anchor"
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "anchor"
- [features]
- default = []
- cpi = ["no-entrypoint"]
- no-entrypoint = []
- no-idl = []
- no-log-ix-name = []
- idl-build = ["anchor-lang/idl-build", "anchor-spl/idl-build"]
- [dependencies]
- anchor-spl = "0.30.0"
- anchor-lang = { version = "0.30.0", features= ["init-if-needed"]}
- spl-token = { version = "3.1.1", features = ["no-entrypoint"] }
- spl-token-2022 = { version = "0.7.0", features = ["no-entrypoint"] }
|