-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 741 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[workspace]
members = [
"affine-cli",
"api-reader",
"avahi-scan",
"colcat",
]
resolver = "3"
[workspace.package]
# name = "rust_utilities"
version = "0.1.0"
authors = ["Richard Osterloh <richard.osterloh@gmail.com>"]
license = "MIT"
description = "Small utililies I've written while learning Rust"
homepage = "https://github.com/rosterloh/rust_utilities"
repository = "https://github.com/rosterloh/rust_utilities"
readme = "README.md"
keywords = ["cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
rust-version = "1.94.1"
edition = "2024"
[profile.release]
opt-level = 3
debug = false
panic="unwind"
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
debug = true
panic="abort"