brewery
notashelf /
589c26f2105746065b3ac8d954eb768b930f9dff

beer

public

A terminal worth pouring time into

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/beer.git
Cargo.tomlToml22 lines416 B
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.lints.rust]
12
unsafe_op_in_unsafe_fn = "deny"
13
missing_debug_implementations = "warn"
14
15
[workspace.lints.clippy]
16
all = { level = "warn", priority = -1 }
17
18
[profile.release]
19
opt-level = 3
20
lto = "fat"
21
codegen-units = 1
22
strip = true