Initialize a Cargo project.
cargo new my_projectwhere my_project is the name of the project.
Add Iced to the project dependencies.
cd my_project
cargo add icedYou should see the dependency in the end of Cargo.toml file.
[dependencies]
iced = "0.13.1"Note: If you encounter WGPU Error, you can disable wgpu in Cargo.toml file.
[dependencies]
iced = { version = "0.13.1", default-features = false }➡️ Next: First App - Hello World!
📘 Back: Table of contents