aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-03-30 16:24:46 +0200
committerpml68 <contact@pml68.dev>2025-03-30 16:24:46 +0200
commitb86e2076d759c3726b4406abbd61290fd41581ce (patch)
treec1d184ffc89151017a18f72104d891489196c1ef /Cargo.toml
downloadiced_dialog-b86e2076d759c3726b4406abbd61290fd41581ce.tar.gz
feat: initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml56
1 files changed, 56 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..16c55e1
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,56 @@
+[package]
+name = "iced_dialog"
+description = "A custom dialog widget for `iced`"
+authors = ["pml68 <contact@pml68.dev>"]
+version = "0.14.0-dev"
+edition = "2024"
+license = "MIT"
+readme = "README.md"
+repository = "https://github.com/pml68/iced_dialog"
+categories = ["gui"]
+keywords = ["gui", "ui", "graphics", "interface", "widgets"]
+rust-version = "1.85"
+
+[dependencies]
+iced_widget.workspace = true
+iced_core.workspace = true
+
+[workspace.dependencies.iced_widget]
+git = "https://github.com/iced-rs/iced"
+branch = "master"
+features = ["advanced"]
+
+[workspace.dependencies.iced_core]
+git = "https://github.com/iced-rs/iced"
+branch = "master"
+features = ["advanced"]
+
+[workspace]
+members = ["example"]
+
+[package.metadata.docs.rs]
+rustdoc-args = ["--cfg", "docsrs"]
+all-features = true
+
+[lints.rust]
+missing_docs = "deny"
+unsafe_code = "deny"
+unused_results = "deny"
+
+[lints.clippy]
+type-complexity = "allow"
+semicolon_if_nothing_returned = "deny"
+trivially-copy-pass-by-ref = "deny"
+default_trait_access = "deny"
+match-wildcard-for-single-variants = "deny"
+redundant-closure-for-method-calls = "deny"
+filter_map_next = "deny"
+manual_let_else = "deny"
+unused_async = "deny"
+from_over_into = "deny"
+needless_borrow = "deny"
+new_without_default = "deny"
+useless_conversion = "deny"
+
+[lints.rustdoc]
+broken_intra_doc_links = "forbid"