brewery
notashelf /
1593b40decf23eda4f3426997c271b081428120d

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml26 lines584 B
1
[package]
2
name = "wterm"
3
version = "0.0.0"
4
edition = "2024"
5
rust-version = "1.95"
6
description = "A fast, software-rendered, Wayland-native terminal emulator"
7
license = "EUPL-1.2"
8
readme = true
9
default-run = "wterm"
10
11
[dependencies]
12
anyhow = "1.0.102"
13
tracing = "0.1.44"
14
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
15
16
[lints.rust]
17
rust_2018_idioms = { level = "warn", priority = -1 }
18
unsafe_op_in_unsafe_fn = "deny"
19
missing_debug_implementations = "warn"
20
21
[lints.clippy]
22
all = { level = "warn", priority = -1 }
23
24
[profile.release]
25
lto = "thin"
26
codegen-units = 1