34 lines
755 B
TOML
34 lines
755 B
TOML
[package]
|
|
name = "gamo"
|
|
version = "1.1.0"
|
|
edition = "2021"
|
|
authors = ["Wynd <wyndftw@proton.me>"]
|
|
description = "TUI gamepad tester"
|
|
readme = "README.md"
|
|
repository = "https://git.pixelatedw.xyz/wynd/gamo"
|
|
license = "GPL-3.0-or-later"
|
|
rust-version = "1.78"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lints.rust]
|
|
unsafe_code = { level = "forbid" }
|
|
|
|
[dependencies]
|
|
gilrs = { version = "0.10.4" }
|
|
ratatui = { version = "0.28.1" }
|
|
color-eyre = { version = "0.6.3" }
|
|
tracing = { version = "0.1.40" }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
lto = false
|
|
incremental = true
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|