Step 4: Update the Project's Root Cargo.toml File
[workspace] members = [ "programs/nft-minter" ] resolver = "2" [profile.release] overflow-checks = true lto = "fat" codegen-units = 1 [profile.release.build-override] opt-level = 3 incremental = false codegen-units = 1
PreviousStep 3: Update the Smart Contract's Cargo.toml FileNextStep 5: Compile Your Program with anchor build
Was this helpful?