Add extra info to cargo.
This commit is contained in:
parent
743be9537c
commit
4dfdf16c3d
1 changed files with 9 additions and 0 deletions
|
|
@ -2,6 +2,10 @@
|
||||||
name = "system_manager"
|
name = "system_manager"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
license = "MIT"
|
||||||
|
authors = [
|
||||||
|
"Ramses <ramses@well-founded.dev>"
|
||||||
|
]
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
|
@ -9,6 +13,11 @@ edition = "2021"
|
||||||
name = "system-manager"
|
name = "system-manager"
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
lto = true
|
||||||
|
codegen-units = 1
|
||||||
|
panic = "abort"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.68"
|
anyhow = "1.0.68"
|
||||||
clap = { version = "4.1.4", features = ["derive"] }
|
clap = { version = "4.1.4", features = ["derive"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue