Skip to content

Commit c10880c

Browse files
authored
refactor: cargo manifests (incl. dependency cleanup) (#811)
* refactor: cargo manifests * refactor: remove `once_cell` * refactor: deduplicate dependencies
1 parent cad15d7 commit c10880c

File tree

13 files changed

+287
-326
lines changed

13 files changed

+287
-326
lines changed

.clippy.toml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
allowed-duplicate-crates = [
2+
"bitflags",
3+
"dashmap", # upgraded to 6.* by dependabot, not sure if it should be downgraded back
4+
5+
"getrandom",
6+
"wasi", # 0.14 needed by [email protected], 0.11 by [email protected] and [email protected]
7+
8+
"hashbrown", # TODO: can be resolved by updating dashmap to 7.0.0-rc0
9+
"objc2",
10+
"objc2-foundation",
11+
12+
"proc-macro-utils", # TODO: can be resolved by updating leptos crates to 0.7.0
13+
"serde_qs", # TODO: can be resolved by updating leptos crates to 0.7.0
14+
15+
"rustix",
16+
"linux-raw-sys", # needed by [email protected]
17+
18+
"thiserror",
19+
"thiserror-impl",
20+
"ttf-parser", # both versions are brought by [email protected]
21+
"windows-core",
22+
"windows-implement",
23+
"windows-interface",
24+
"windows-result",
25+
"windows-sys",
26+
"windows-targets",
27+
"windows_aarch64_gnullvm",
28+
"windows_aarch64_msvc",
29+
"windows_i686_gnu",
30+
"windows_i686_msvc",
31+
"windows_x86_64_gnu",
32+
"windows_x86_64_gnullvm",
33+
"windows_x86_64_msvc",
34+
"zip", # 0.5.13 needed by simple_excel_writer, 4.2.0 by calamine
35+
]

0 commit comments

Comments
 (0)