aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-12-08 15:45:05 +0100
committerPolesznyák Márk <contact@pml68.dev>2025-12-08 15:45:05 +0100
commit366f2140064f37d4ed8dd2684b0cb199d6605c92 (patch)
treeaea28dc636f21ce157306cf17218def5a260c033
parentchore: add mailmap (diff)
downloadiced_dialog-0.14.tar.gz
feat: prepare for release0.14
-rw-r--r--Cargo.toml19
1 files changed, 6 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e16d24f..8118ee1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,13 +2,12 @@
name = "iced_dialog"
description = "A custom dialog widget for `iced`"
authors = ["pml68 <contact@pml68.dev>"]
-version = "0.14.0-dev"
+version = "0.14.0"
edition = "2024"
license = "MIT"
readme = "README.md"
homepage = "https://sr.ht/~pml68/iced_dialog"
repository = "https://git.sr.ht/~pml68/iced_dialog"
-documentation = "https://iced-dialog.pml68.dev"
categories = ["gui"]
keywords = ["gui", "ui", "graphics", "interface", "widgets"]
rust-version = "1.88"
@@ -16,17 +15,17 @@ exclude = [
".cargo/config.toml",
".github/*",
".gitignore",
- "examples/*",
+ "examples",
"rustfmt.toml",
]
[dependencies]
-iced_widget = "0.14.0-dev"
-iced_core = { version = "0.14.0-dev", features = ["advanced"] }
+iced_widget = "0.14"
+iced_core = { version = "0.14", features = ["advanced"] }
[dev-dependencies]
-iced = "0.14.0-dev"
-iced_test = "0.14.0-dev"
+iced = "0.14.0"
+iced_test = "0.14.0"
[[example]]
name = "save"
@@ -57,9 +56,3 @@ 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" }
-iced_test = { git = "https://github.com/iced-rs/iced", branch = "master" }