-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
92 lines (84 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = [
"keyset",
"keyset-color",
"keyset-drawing",
"keyset-font",
"keyset-geom",
"keyset-key",
"keyset-profile",
]
resolver = "2"
[workspace.package]
version = "0.3.2"
authors = ["Lucas Jansen"]
edition = "2021"
rust-version = "1.80"
repository = "https://github.com/staticintlucas/keyset-rs"
license = "MIT OR Apache-2.0"
[workspace.dependencies]
color = { package = "keyset-color", path = "keyset-color", version = "0.3.2" }
drawing = { package = "keyset-drawing", path = "keyset-drawing", version = "0.3.2" }
font = { package = "keyset-font", path = "keyset-font", version = "0.3.2" }
geom = { package = "keyset-geom", path = "keyset-geom", version = "0.3.2" }
key = { package = "keyset-key", path = "keyset-key", version = "0.3.2" }
profile = { package = "keyset-profile", path = "keyset-profile", version = "0.3.2" }
assert_matches = "1.5"
euclid = "0.22"
indoc = "2.0"
interp = "2.0"
isclose = "0.1"
itertools = "0.13"
kle-serial = "0.3"
log = "0.4"
miniz_oxide = "0.8"
ouroboros = "0.18"
pdf-writer = "0.12"
rgb = { version = "0.8", default-features = false }
rustybuzz = "0.20"
saturate = "0.1"
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
svg = "0.18"
tiny-skia = { version = "0.11", default-features = false }
toml = { version = "0.8", default-features = false, features = ["parse"] }
[workspace.lints.rust]
future-incompatible = "warn"
let-underscore = "warn"
nonstandard-style = "warn"
rust-2018-compatibility = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
rust-2024-compatibility = "warn"
edition-2024-expr-fragment-specifier = { level = "allow", priority = 1 }
unused = "warn"
missing-copy-implementations = "warn"
missing-debug-implementations = "warn"
missing-docs = "warn"
non-ascii-idents = "warn"
single-use-lifetimes = "warn"
trivial-casts = "warn"
trivial-numeric-casts = "warn"
unit-bindings = "warn"
unstable-features = "warn"
unused-crate-dependencies = "warn"
unused-lifetimes = "warn"
unused-qualifications = "warn"
variant-size-differences = "warn"
unsafe-code = { level = "forbid", priority = 1 }
[workspace.lints.clippy]
all = "warn"
cargo = "warn"
nursery = "warn"
pedantic = "warn"
allow_attributes_without_reason = "warn"
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
pattern_type_mismatch = "warn"
redundant_type_annotations = "warn"
try_err = "warn"
unseparated_literal_suffix = "warn"
unwrap_used = "warn"
suboptimal-flops = { level = "allow", priority = 1 } # TODO rust-lang/rust-clippy#6867
module-name-repetitions = { level = "allow", priority = 1 } # TODO rust-lang/rust-clippy#8524