mirror of https://github.com/rm-dr/daisy
21 lines
311 B
TOML
21 lines
311 B
TOML
[package]
|
|
name = "daisy"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = 0
|
|
debug-assertions = false
|
|
strip = "symbols"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
|
|
[target.'cfg(target_family = "unix")'.dependencies]
|
|
termion = "2.0.1"
|
|
rug = "1.19.2" |