-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
65 lines (55 loc) · 1.55 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "tauri-plugin-prevent-default"
description = "Disable default browser shortcuts"
version = "1.1.0"
homepage = "https://github.com/ferreira-tb/tauri-plugin-prevent-default"
repository = "https://github.com/ferreira-tb/tauri-plugin-prevent-default"
documentation = "https://docs.rs/tauri-plugin-prevent-default"
authors = ["Andrew Ferreira <[email protected]>"]
license = "MIT"
edition = "2021"
rust-version = "1.77.2"
keywords = ["plugin", "tauri", "browser", "webview"]
categories = ["gui", "web-programming"]
links = "tauri-plugin-prevent-default"
[package.metadata.docs.rs]
no-default-features = true
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs"]
[lints.clippy]
clone_on_ref_ptr = "deny"
doc_markdown = "allow"
map_unwrap_or = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_borrow = "deny"
rest_pat_in_fully_bound_structs = "deny"
similar_names = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
useless_conversion = "deny"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[dependencies]
bitflags = "2.8"
itertools = "0.14"
tauri = "2"
thiserror = "2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.strum]
version = "0.26"
features = ["derive"]
[target."cfg(windows)".dependencies.webview2-com]
version = "0.34"
optional = true
[target."cfg(windows)".dependencies.windows]
version = "0.58"
optional = true
[build-dependencies.tauri-plugin]
version = "2.0"
features = ["build"]
[features]
unstable-windows = ["dep:windows", "dep:webview2-com"]