brewery
notashelf /
f42924c4735e34dfb21c3a6e5a7183df4a5db419

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml58 lines1.2 KB
1
[workspace]
2
resolver = "3"
3
members = ["crates/beer", "crates/beer-protocols"]
4
5
[workspace.package]
6
version = "0.4.0"
7
edition = "2024"
8
rust-version = "1.95.0"
9
license = "EUPL-1.2"
10
11
[workspace.dependencies]
12
# Workspace components
13
beer-protocols = { path = "crates/beer-protocols", version = "0.4.0" }
14
15
# Other dependencies
16
anyhow = "1.0.102"
17
calloop = { version = "0.14.4", features = ["signals"] }
18
calloop-wayland-source = "0.4.1"
19
fontconfig = "0.11.0"
20
freetype-rs = "0.38.0"
21
harfbuzz_rs_now = "2.3.2"
22
lru = "0.18.0"
23
pound = "0.1.6"
24
rustix = { version = "1.1.4", features = [
25
  "pty",
26
  "process",
27
  "termios",
28
  "stdio",
29
  "fs",
30
] }
31
serde = { version = "1.0.228", features = ["derive"] }
32
serde_ignored = "0.1.14"
33
smithay-client-toolkit = "0.20.0"
34
thiserror = "2.0.18"
35
toml = "1.1.2"
36
tracing = "0.1.44"
37
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
38
unicode-width = "0.2.2"
39
vte = "0.15.0"
40
wayland-client = "0.31.14"
41
wayland-protocols = { version = "0.32.13", features = [
42
  "client",
43
  "staging",
44
  "unstable",
45
] }
46
47
[workspace.lints.rust]
48
unsafe_op_in_unsafe_fn = "deny"
49
missing_debug_implementations = "warn"
50
51
[workspace.lints.clippy]
52
all = { level = "warn", priority = -1 }
53
54
[profile.release]
55
opt-level = 3
56
lto = "fat"
57
codegen-units = 1
58
strip = true