-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (36 loc) · 1.12 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
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "bodhi-cli"
description = "bodhi CLI client based on bodhi-rs"
license = "MIT OR Apache-2.0"
version = "2.1.2"
edition = "2021"
rust-version = "1.74.0"
authors = ["Fabio Valentini <[email protected]>"]
readme = "README.md"
exclude = ["/.github/", "/rustfmt.toml"]
categories = ["command-line-utilities"]
keywords = ["fedora", "bodhi", "CLI", "client"]
repository = "https://github.com/ironthree/bodhi-cli"
[[bin]]
name = "bodhi-cli"
path = "src/main.rs"
[dependencies]
bodhi = "2.0.1"
chrono = { version = "0.4.19", features = ["clock", "std"], default-features = false }
clap = { version = "4.0", features = ["derive", "color", "suggestions", "wrap_help"]}
dirs = "5.0"
rpassword = "7.0"
secret-service = { version = "3.0", features = ["rt-tokio-crypto-rust"] }
serde = { version = "1.0.134", features = ["derive"] }
serde_json = "1.0.78"
terminal_size = "0.3"
tokio = { version = "1.14", features = ["fs", "macros", "rt-multi-thread"] }
toml = "0.8"
[build-dependencies]
bodhi = "2.0.1"
clap = { version = "4.0", features = ["derive"]}
clap_complete = "4.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3