-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
78 lines (71 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
members = [
"annimate_core",
"annimate_desktop/src-tauri",
]
resolver = "2"
[workspace.package]
version = "1.3.3"
authors = ["Matthias Stemmler <[email protected]>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/matthias-stemmler/annimate"
rust-version = "1.82"
license = "Apache-2.0"
publish = false
[workspace.lints.rust]
elided_lifetimes_in_paths = "deny"
unreachable_pub = "deny"
unsafe_code = "deny"
unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_qualifications = "deny"
[workspace.lints.clippy]
all = { level = "deny", priority = -1 }
default_trait_access = "deny"
doc_markdown = "deny"
needless_pass_by_value = "deny"
semicolon_if_nothing_returned = "deny"
unnecessary_wraps = "deny"
use_debug = "deny"
[workspace.lints.rustdoc]
bare_urls = "deny"
broken_intra_doc_links = "deny"
invalid_codeblock_attributes = "deny"
invalid_rust_codeblocks = "deny"
missing_crate_level_docs = "deny"
private_intra_doc_links = "deny"
[workspace.dependencies]
cargo_metadata = "0.19.1"
csv = "1.3.1"
graphannis = "3.6.0"
graphannis-core = "3.6.0"
insta = "1.42.0"
itertools = "0.14.0"
regex = "1.11.1"
rust_xlsxwriter = "0.81.0"
serde = "1.0.217"
serde_json = "1.0.137"
tauri = { version = "2.2.2" }
tauri-build = "2.0.5"
tauri-plugin-dialog = "2.2.0"
tauri-plugin-process = "2.2.0"
tauri-plugin-shell = "2.2.0"
tauri-plugin-single-instance = "2.2.1"
tauri-plugin-updater = "2.3.1"
tauri-plugin-window-state = "2.2.0"
tempfile = "3.15.0"
thiserror = "2.0.11"
tokio = "1.43.0"
toml = "0.8.19"
urlencoding = "2.1.3"
zip = "2.2.2"
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
panic = "abort"
strip = true
[profile.dev.package]
insta.opt-level = 3
similar.opt-level = 3