-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (44 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
49 lines (44 loc) · 1.06 KB
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
[workspace]
members = [
"lib/osi",
"lib/sys",
"lib/tmp",
]
resolver = "2"
default-members = [
"lib/osi",
"lib/sys",
"lib/tmp",
]
[workspace.package]
categories = [
"no-std",
"os",
]
edition = "2021"
homepage = "https://www.bus1.eu"
license = "MIT OR Apache-2.0 OR LGPL-2.1-or-later"
readme = "README.md"
repository = "https://github.com/bus1/sys"
rust-version = "1.91"
[workspace.dependencies]
libc = { default-features = false, version = "0.2.175" }
osi = { path = "./lib/osi", version = "1.0.0" }
sys = { path = "./lib/sys", version = "1.0.0" }
tmp = { path = "./lib/tmp", version = "1.0.0" }
[workspace.lints.clippy]
assertions_on_constants = "allow"
explicit_auto_deref = "allow"
identity_op = "allow"
inherent_to_string_shadow_display = "allow"
len_zero = "allow"
manual_range_contains = "allow"
needless_late_init = "allow"
new_without_default = "allow"
should_implement_trait = "allow"
redundant_field_names = "allow"
[workspace.lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
"cfg(polonius)"
]