Cargo.toml
1 [package] 2 name = "akinnet" 3 version = "0.1.0" 4 description = "Created with Anchor" 5 edition = "2021" 6 7 [lib] 8 crate-type = ["cdylib", "lib"] 9 name = "akinnet" 10 11 [features] 12 default = ["localnet"] 13 cpi = ["no-entrypoint"] 14 no-entrypoint = [] 15 no-idl = [] 16 no-log-ix-name = [] 17 idl-build = ["anchor-lang/idl-build"] 18 localnet = [] 19 devnet = [] 20 21 [dependencies] 22 anchor-lang = "0.32.1"