brewery
notashelf /
3e49e94f5682b914c73ec2bcd545734c7f9bf31d

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml51 lines1.1 KB
1
[package]
2
name = "beer"
3
version = "0.3.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 = { 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
harfbuzz_rs_now = "2.3.2"
17
lru = "0.18.0"
18
pound = "0.1.6"
19
rustix = { version = "1.1.4", features = [
20
  "pty",
21
  "process",
22
  "termios",
23
  "stdio",
24
  "fs",
25
] }
26
serde = { version = "1.0.228", features = ["derive"] }
27
serde_ignored = "0.1.14"
28
smithay-client-toolkit = "0.20.0"
29
thiserror = "2.0.18"
30
toml = "1.1.2"
31
tracing = "0.1.44"
32
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
33
unicode-width = "0.2.2"
34
vte = "0.15.0"
35
wayland-client = "0.31.14"
36
wayland-protocols = { version = "0.32.13", features = [
37
  "client",
38
  "staging",
39
  "unstable",
40
] }
41
42
[lints.rust]
43
unsafe_op_in_unsafe_fn = "deny"
44
missing_debug_implementations = "warn"
45
46
[lints.clippy]
47
all = { level = "warn", priority = -1 }
48
49
[profile.release]
50
lto = "thin"
51
codegen-units = 1