-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (44 loc) · 1.31 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
43
44
45
46
47
[package]
name = "bitsrun"
description = "A headless login and logout CLI for 10.0.0.55 at BIT"
version = "0.4.0"
edition = "2021"
license = "MIT"
homepage = "https://github.com/spencerwooo/bitsrun-rs"
documentation = "https://github.com/spencerwooo/bitsrun-rs"
repository = "https://github.com/spencerwooo/bitsrun-rs"
readme = "README.md"
keywords = ["bit", "bitsrun", "srun", "srun-client", "srun-login"]
categories = ["command-line-utilities"]
authors = ["Spencer Woo <[email protected]>"]
[dependencies]
reqwest = { version = "0.11", features = [
"json",
"rustls-tls", # in favor of native openssl
], default-features = false }
tokio = { version = "1", features = ["full"] }
url = "2.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
hmac = "0.12"
md-5 = "0.10"
base64 = "0.21"
sha1 = "0.10"
clap = { version = "4.4", features = ["derive"] }
directories = "5.0"
owo-colors = { version = "3", features = ["supports-colors"] }
rpassword = "7.3"
rprompt = "2.1"
tabled = { version = "0.14", features = ["color"] }
humansize = "2.1"
chrono-humanize = "0.2"
chrono = "0.4"
log = "0.4.20"
pretty_env_logger = "0.5.0"
[profile.release]
strip = "symbols"
[package.metadata.deb]
copyright = "2024 Spencer Woo"
maintainer-scripts = "debian/"
systemd-units = { enable = true, start = false }