Skip to content

Commit 24a5fac

Browse files
committed
chore: use iced dev version
1 parent 2bdd153 commit 24a5fac

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ edition = "2024"
55
rust-version = "1.88"
66

77
[dependencies]
8-
iced_core = "0.14"
9-
iced_widget = "0.14"
10-
iced_runtime = { version = "0.14", optional = true }
8+
iced_core = "0.15.0-dev"
9+
iced_widget = "0.15.0-dev"
10+
iced_runtime = { version = "0.15.0-dev", optional = true }
1111

1212
[workspace]
1313
members = ["examples/*"]
1414

1515
[features]
1616
helpers = ["iced_runtime"]
17+
18+
[patch.crates-io]
19+
iced_core = { git = "https://github.com/iced-rs/iced.git" }
20+
iced_runtime = { git = "https://github.com/iced-rs/iced.git" }
21+
iced_widget = { git = "https://github.com/iced-rs/iced.git" }

examples/color/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2024"
55

66
[dependencies]
77
iced_drop = { path = "../.." , features = ["helpers"] }
8-
iced = { version = "0.14", features = ["advanced"] }
8+
iced = { git = "https://github.com/iced-rs/iced.git", features = ["advanced"] }

examples/todo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2024"
55

66
[dependencies]
77
iced_drop = { path = "../.." , features = ["helpers"]}
8-
iced = { version = "0.14", features = ["advanced"] }
8+
iced = { git = "https://github.com/iced-rs/iced.git", features = ["advanced"] }

0 commit comments

Comments
 (0)