-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 808 Bytes
/
Copy pathCargo.toml
File metadata and controls
33 lines (28 loc) · 808 Bytes
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
[workspace]
resolver = "2"
members = [
"tuitar*",
"firmware",
"ratatui-fretboard",
]
[workspace.package]
version = "0.1.0"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/orhun/tuitar"
homepage = "https://github.com/orhun/tuitar"
documentation = "https://github.com/orhun/tuitar#"
rust-version = "1.77"
[workspace.dependencies]
tuitar-core = { path = "tuitar-core", version = "0.1.0" }
ratatui-fretboard = { path = "ratatui-fretboard", version = "0.2.0" }
ratatui = { version = "0.29.0", default-features = false }
tui-big-text = "=0.7.0"
pitchy = "0.1.1"
log = "0.4"
[profile.release]
opt-level = 3
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"