forked from NotAShelf/beer
initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I29ab7ff39db110698d7ee72c56cf96486a6a6964
This commit is contained in:
commit
1593b40dec
3 changed files with 268 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "wterm"
|
||||
version = "0.0.0"
|
||||
edition = "2024"
|
||||
rust-version = "1.95"
|
||||
description = "A fast, software-rendered, Wayland-native terminal emulator"
|
||||
license = "EUPL-1.2"
|
||||
readme = true
|
||||
default-run = "wterm"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.102"
|
||||
tracing = "0.1.44"
|
||||
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
||||
|
||||
[lints.rust]
|
||||
rust_2018_idioms = { level = "warn", priority = -1 }
|
||||
unsafe_op_in_unsafe_fn = "deny"
|
||||
missing_debug_implementations = "warn"
|
||||
|
||||
[lints.clippy]
|
||||
all = { level = "warn", priority = -1 }
|
||||
|
||||
[profile.release]
|
||||
lto = "thin"
|
||||
codegen-units = 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue