brewery
notashelf /
c68d3445e72da17183b1401e92b924c463babf9f

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml29 lines639 B
1
[package]
2
name = "beer"
3
version = "0.0.0"
4
edition = "2024"
5
rust-version = "1.95.0"
6
description = "A fast, software-rendered, Wayland-native terminal emulator"
7
license = "EUPL-1.2"
8
readme = true
9
10
[dependencies]
11
anyhow = "1.0.102"
12
calloop = "0.14.4"
13
calloop-wayland-source = "0.4.1"
14
pound = "0.1.6"
15
smithay-client-toolkit = "0.20.0"
16
tracing = "0.1.44"
17
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
18
wayland-client = "0.31.14"
19
20
[lints.rust]
21
unsafe_op_in_unsafe_fn = "deny"
22
missing_debug_implementations = "warn"
23
24
[lints.clippy]
25
all = { level = "warn", priority = -1 }
26
27
[profile.release]
28
lto = "thin"
29
codegen-units = 1