-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 943 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
[package]
name = "klauncher"
version = "0.1.0"
authors = ["Wyatt Jacob Herkamp <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
reqwest = { version = "0.11", features = ["json", "blocking"], default-features = false }
futures = "0.3.19"
jenkins_api = {git="https://github.com/wyatt-herkamp/jenkins-api.rs.git"}
indicatif = "0.17.1"
zip = "0.6.2"
thiserror = "1"
nitro_log = { git = "https://github.com/wyatt-herkamp/nitro_log" }
log = "0.4.17"
serde_json = "1"
discord-rpc-client = { version = "0.3.0", optional = true }
[features]
discord = ["discord-rpc-client"]
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winuser", "tlhelp32", "processthreadsapi", "synchapi", "impl-default"] }