-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
29 lines (26 loc) · 1.06 KB
/
Cargo.toml
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
[workspace]
members = ["pigdef", "piggui", "piglet", "pignet", "pigpio"]
default-members = ["pigdef", "piggui", "piglet", "pignet", "pigpio"]
resolver = "2"
[workspace.package]
version = "0.6.0"
edition = "2021"
description = "A Graphical User Interface for interacting with local and remote Raspberry Pi and Pi Pico Hardware, plus app and binaries for those targets"
authors = ["Andrew Mackenzie <[email protected]>", "Sundaram Krishnan <[email protected]>"]
license = "Apache-2.0"
documentation = "https://github.com/andrewdavidmackenzie/pigg/README.md"
repository = "https://github.com/andrewdavidmackenzie/pigg/"
homepage = "https://github.com/andrewdavidmackenzie/pigg/"
readme = "README.md"
exclude = [".cargo", ".git", ".github", ".idea", "assets/", "configs/", "tests/", ".gitignore", "codecov.yml",
"Makefile", "dist-workspace.toml", "FUNDING.json"]
rust-version = "1.80"
[profile.release]
opt-level = "s"
lto = "fat"
panic = "abort"
strip = "debuginfo"
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"