20d1f216a0
- anchor-lang: 0.29.0 -> 0.30.1 - anchor-spl: 0.29.0 -> 0.30.1 - solana-program: 1.16.20 -> 2.x (inferred from anchor-spl) - Fix token_prog -> token_program naming - Fix ctx.bumps access for Anchor 0.30.x API - Update declare_id! with new vanity address Build now passes successfully.
21 lines
418 B
TOML
21 lines
418 B
TOML
[package]
|
|
name = "coop-credits"
|
|
version = "1.0.0"
|
|
description = "CoopCredits SPL Token Program"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
name = "coop_credits"
|
|
|
|
[features]
|
|
no-entrypoint = []
|
|
no-idl = []
|
|
no-log-ix-name = []
|
|
cpi = ["no-entrypoint"]
|
|
default = []
|
|
|
|
[dependencies]
|
|
anchor-lang = { version = "0.30.1", features = ["init-if-needed"] }
|
|
anchor-spl = { version = "0.30.1", features = ["metadata"] }
|