diff options
| author | pml68 <contact@pml68.dev> | 2025-07-04 22:52:33 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-07-04 22:52:33 +0200 |
| commit | c1b7cf7c3030db12a6509b65cb9decbc6a37b426 (patch) | |
| tree | 6e85b4e55fd64537aaf932f76eb761e954baa870 | |
| parent | doc: use `README` as crate documentation (diff) | |
| download | iced_dialog-c1b7cf7c3030db12a6509b65cb9decbc6a37b426.tar.gz | |
chore: switch to `[patch.crates-io]` method for git deps
| -rw-r--r-- | Cargo.toml | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -12,11 +12,11 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"] rust-version = "1.85" [dependencies] -iced_widget = { git = "https://github.com/iced-rs/iced", branch = "master" } -iced_core = { git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced"] } +iced_widget = "0.14.0-dev" +iced_core = { version = "0.14.0-dev", features = ["advanced"] } [dev-dependencies] -iced = { git = "https://github.com/iced-rs/iced", branch = "master" } +iced = "0.14.0-dev" [[example]] name = "save" @@ -47,3 +47,8 @@ useless_conversion = "deny" [lints.rustdoc] broken_intra_doc_links = "forbid" + +[patch.crates-io] +iced_widget = { git = "https://github.com/iced-rs/iced", branch = "master" } +iced_core = { git = "https://github.com/iced-rs/iced", branch = "master" } +iced = { git = "https://github.com/iced-rs/iced", branch = "master" } |
