-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.24 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]
resolver = "3"
members = ["mousefood", "examples/*"]
default-members = ["mousefood"]
[workspace.package]
edition = "2024"
rust-version = "1.86"
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.0"
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.0", default-features = false }
rstest = "0.26.1"
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"