-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (27 loc) · 887 Bytes
/
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
30
31
32
33
[package]
name = "steam_randomiser"
version = "0.5.0"
authors = ["Dimitri Belopopsky <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Randomly picks an installed Steam game!"
readme = "README.md"
homepage = "https://github.com/ShadowMitia/steam_randomiser"
repository = "https://github.com/ShadowMitia/steam_randomiser"
keywords = ["cli", "steam", "random", "game"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
build = "build.rs"
[dependencies]
dirs = "5.0.1"
rand = "0.8.5"
which = "5.0.0"
clap = { version = "4.4.7", features = ["derive"] }
[build-dependencies]
clap = { version = "4.4.7", features = ["derive"] }
clap_complete = { version = "4.4.4", features = ["unstable-dynamic"] }
[profile.release]
lto = true
strip = true
opt-level = "z"
codegen-units = 1