Skip to content

Commit 2e8df3c

Browse files
nyurikAmanieu
authored andcommitted
Add all crates to workspace
I am not certain why some crates are missing - it might be by accident or on purpose, so feel free to reject. This makes sure no crate is missed by accident, and also removed the non-existent `wasm-assert-instr-tests` crate. P.S. Also, added some crate-level lints, but perhaps these should be added to all crates in the workspace?
1 parent adeb704 commit 2e8df3c

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Cargo.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
[workspace]
22
resolver = "1"
33
members = [
4-
"crates/stdarch-verify",
5-
"crates/core_arch",
6-
"crates/std_detect",
7-
"crates/stdarch-gen-arm",
8-
"crates/stdarch-gen-loongarch",
9-
"crates/intrinsic-test",
10-
"examples/"
11-
]
12-
exclude = [
13-
"crates/wasm-assert-instr-tests"
4+
"crates/*",
5+
"examples"
146
]
157

168
[profile.release]

crates/core_arch/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,9 @@ std_detect = { version = "0.*", path = "../std_detect" }
2828
syscalls = { version = "0.6.18", default-features = false }
2929

3030
[lints.rust]
31-
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(stdarch_intel_sde)'] }
31+
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(stdarch_intel_sde)'] }
32+
33+
[lints.clippy]
34+
too_long_first_doc_paragraph = "allow"
35+
missing_transmute_annotations = "allow"
36+
useless_transmute = "allow"

0 commit comments

Comments
 (0)