Step 3: Update the Smart Contract's Cargo.toml File
[package] name = "nft-minter" version = "0.1.0" description = "Created with Anchor" edition = "2021" [lib] crate-type = ["cdylib", "lib"] name = "nft_minter" [features] no-entrypoint = [] no-idl = [] no-log-ix-name = [] cpi = ["no-entrypoint"] default = [] [dependencies] anchor-lang = "0.29.0" anchor-spl = "0.29.0"

Loaded & Verified Dependencies
PreviousStep 2: Update the lib.rs File with Smart Contract CodeNextStep 4: Update the Project's Root Cargo.toml File
Was this helpful?