mirror of https://github.com/rm-dr/daisy
25 lines
378 B
TOML
25 lines
378 B
TOML
[package]
|
|
name = "daisy"
|
|
version = "0.2.7"
|
|
edition = "2021"
|
|
build = "buildscript/main.rs"
|
|
|
|
[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"
|
|
|
|
[build-dependencies]
|
|
toml = "0.7.4" |