-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (46 loc) · 1.35 KB
/
Copy pathCargo.toml
File metadata and controls
52 lines (46 loc) · 1.35 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
50
51
52
[workspace]
resolver = "3"
members = ["mousefood", "mousefood-extras", "examples/*"]
exclude = [
"examples/esp32-c6-embassy-example",
]
default-members = ["mousefood"]
[workspace.package]
edition = "2024"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/ratatui/mousefood"
repository = "https://github.com/ratatui/mousefood"
keywords = ["embedded-graphics", "ratatui", "tui"]
categories = ["embedded"]
exclude = ["/.github", "/assets"]
[profile.dev]
# Symbols are nice and they don't increase the size on Flash
debug = true
opt-level = 3
[profile.release]
# LLVM can perform better optimizations using a single thread
codegen-units = 1
debug = 2
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 's'
overflow-checks = false
[workspace.dependencies]
ratatui-core = "0.1.2"
thiserror = { version = "2.0.18", default-features = false }
embedded-graphics = "0.8.2"
embedded-graphics-simulator = "0.8.0"
embedded-graphics-unicodefonts = "0.2.0"
weact-studio-epd = { version = "0.1.2", features = ["blocking"] }
epd-waveshare = "0.6.0"
ratatui = { version = "0.30.2", default-features = false , features = ["portable-atomic"]}
rstest = "0.27.0"
paste = "1.0.15"
[workspace.lints.rust]
missing_docs = "warn"
[workspace.lints.clippy]
std_instead_of_core = "warn"
std_instead_of_alloc = "warn"
alloc_instead_of_core = "warn"