From a51c3afcc735180aca88a48239d09991e18bbdd7 Mon Sep 17 00:00:00 2001 From: pml68 Date: Sun, 30 Mar 2025 16:24:46 +0200 Subject: feat: initial commit --- Cargo.toml | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3e8d4ca --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,50 @@ +[package] +name = "iced_dialog" +description = "A custom dialog widget for `iced`" +authors = ["pml68 "] +version = "0.13.0" +edition = "2021" +license = "MIT" +readme = "README.md" +repository = "https://github.com/pml68/iced_dialog" +categories = ["gui"] +keywords = ["gui", "ui", "graphics", "interface", "widgets"] +rust-version = "1.80" + +[dependencies] +iced_widget.workspace = true +iced_core.workspace = true + +[workspace.dependencies] +iced_widget = "0.13.4" +iced_core = { version = "0.13.2", 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" -- cgit v1.2.3