brewery
notashelf /
1b8138fc4f8abd1fd8809f2016d8485c28d624a2

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml49 lines1.0 KB
1
[package]
2
name = "beer"
3
version = "0.1.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 = { version = "0.14.4", features = ["signals"] }
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
serde = { version = "1.0.228", features = ["derive"] }
26
smithay-client-toolkit = "0.20.0"
27
thiserror = "2.0.18"
28
toml = "0.9"
29
tracing = "0.1.44"
30
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
31
unicode-width = "0.2.2"
32
vte = "0.15.0"
33
wayland-client = "0.31.14"
34
wayland-protocols = { version = "0.32.13", features = [
35
  "client",
36
  "staging",
37
  "unstable",
38
] }
39
40
[lints.rust]
41
unsafe_op_in_unsafe_fn = "deny"
42
missing_debug_implementations = "warn"
43
44
[lints.clippy]
45
all = { level = "warn", priority = -1 }
46
47
[profile.release]
48
lto = "thin"
49
codegen-units = 1