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?
This commit is contained in:
parent
0760ed6ca7
commit
11f975e51d
2 changed files with 8 additions and 11 deletions
|
|
@ -1,16 +1,8 @@
|
|||
[workspace]
|
||||
resolver = "1"
|
||||
members = [
|
||||
"crates/stdarch-verify",
|
||||
"crates/core_arch",
|
||||
"crates/std_detect",
|
||||
"crates/stdarch-gen-arm",
|
||||
"crates/stdarch-gen-loongarch",
|
||||
"crates/intrinsic-test",
|
||||
"examples/"
|
||||
]
|
||||
exclude = [
|
||||
"crates/wasm-assert-instr-tests"
|
||||
"crates/*",
|
||||
"examples"
|
||||
]
|
||||
|
||||
[profile.release]
|
||||
|
|
|
|||
|
|
@ -28,4 +28,9 @@ std_detect = { version = "0.*", path = "../std_detect" }
|
|||
syscalls = { version = "0.6.18", default-features = false }
|
||||
|
||||
[lints.rust]
|
||||
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(stdarch_intel_sde)'] }
|
||||
unexpected_cfgs = {level = "warn", check-cfg = ['cfg(stdarch_intel_sde)'] }
|
||||
|
||||
[lints.clippy]
|
||||
too_long_first_doc_paragraph = "allow"
|
||||
missing_transmute_annotations = "allow"
|
||||
useless_transmute = "allow"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue