brewery
notashelf /
28a49c5bbedf7d9785c49eb667eba539f9b56212

beer

public

A terminal worth pouring time into

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