Gm, I am trying to build my move code by running this command in the terminal sui move build
but I’m getting this error message
UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git
Failed to build Move modules: Failed to resolve dependencies for package 'NFT-marketplace'
Caused by:
0: Error parsing '[package]' section of manifest
1: Invalid 'edition'. Unsupported edition "2024.beta". Current supported editions include: "legacy", "2024.alpha".
Here is my Move.toml file
[package]
name = "NFT-marketplace"
version = "0.0.1"
edition = "2024.alpha"
[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/testnet" }
[addresses]
nft-marketplace = "0x0"
Hoping to get a solution here. Thanks in Advance.