initial commit

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I29ab7ff39db110698d7ee72c56cf96486a6a6964
This commit is contained in:
raf 2026-06-20 12:32:44 +03:00
commit 1593b40dec
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF
3 changed files with 268 additions and 0 deletions

26
Cargo.toml Normal file
View 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