diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ea35440 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,48 @@ +[package] +name = "iced_selection" +description = "Text selection for `iced`" +authors = ["pml68 <contact@pml68.dev>"] +version = "0.0.0" +edition = "2024" +license = "MIT" +readme = "README.md" +homepage = "https://sr.ht/~pml68/iced_selection" +repository = "https://git.sr.ht/~pml68/iced_selection" +documentation = "https://iced-selection.pml68.dev" +categories = ["gui"] +keywords = ["gui", "ui", "graphics", "interface", "widgets"] +rust-version = "1.88" + +[dependencies] +iced_widget = { git = "https://github.com/iced-rs/iced" } +unicode-segmentation = "1.0" + +[dev-dependencies] +iced = { git = "https://github.com/iced-rs/iced" } + +[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" |
