brewery
notashelf /
a3c41c6ccb204abc6cea3025ebf51ba02b0780ec

beer

public

A terminal worth pouring time into

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