brewery
notashelf /
2ccd62ba5ed32f612a4ed7c0ef9f9a0a66416d34

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml25 lines526 B
1
[package]
2
name = "beer"
3
version = "0.0.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
pound = "0.1.6"
13
tracing = "0.1.44"
14
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
15
16
[lints.rust]
17
unsafe_op_in_unsafe_fn = "deny"
18
missing_debug_implementations = "warn"
19
20
[lints.clippy]
21
all = { level = "warn", priority = -1 }
22
23
[profile.release]
24
lto = "thin"
25
codegen-units = 1