brewery
notashelf /
0df5588f02af0396fd7abfdd81aa839211ed77b8

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml41 lines845 B
1
[package]
2
name = "beer"
3
version = "0.0.1"
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
fontconfig = "0.11.0"
15
freetype-rs = "0.38.0"
16
pound = "0.1.6"
17
rustix = { version = "1.1.4", features = [
18
  "pty",
19
  "process",
20
  "termios",
21
  "stdio",
22
  "fs",
23
] }
24
smithay-client-toolkit = "0.20.0"
25
thiserror = "2.0.18"
26
tracing = "0.1.44"
27
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
28
unicode-width = "0.2.2"
29
vte = "0.15.0"
30
wayland-client = "0.31.14"
31
32
[lints.rust]
33
unsafe_op_in_unsafe_fn = "deny"
34
missing_debug_implementations = "warn"
35
36
[lints.clippy]
37
all = { level = "warn", priority = -1 }
38
39
[profile.release]
40
lto = "thin"
41
codegen-units = 1