2021-07-31 18:24:49 +02:00
|
|
|
[workspace]
|
|
|
|
|
2023-06-25 15:24:53 +02:00
|
|
|
members = ["steamguard"]
|
2021-07-31 18:24:49 +02:00
|
|
|
|
2021-03-22 02:21:29 +01:00
|
|
|
[package]
|
|
|
|
name = "steamguard-cli"
|
2024-03-04 23:18:59 +01:00
|
|
|
version = "0.13.0"
|
2022-06-12 18:17:26 +02:00
|
|
|
authors = ["dyc3 (Carson McManus) <carson.mcmanus1@gmail.com>"]
|
2024-06-02 18:26:00 +02:00
|
|
|
edition = "2021"
|
2021-08-20 18:17:59 +02:00
|
|
|
description = "A command line utility to generate Steam 2FA codes and respond to confirmations."
|
|
|
|
keywords = ["steam", "2fa", "steamguard", "authentication", "cli"]
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
repository = "https://github.com/dyc3/steamguard-cli"
|
2021-08-25 15:22:36 +02:00
|
|
|
license = "GPL-3.0-or-later"
|
2021-03-22 02:21:29 +01:00
|
|
|
|
2022-12-05 14:47:33 +01:00
|
|
|
[features]
|
2023-07-02 16:44:18 +02:00
|
|
|
default = ["qr", "updater", "keyring"]
|
|
|
|
qr = ["dep:qrcode"]
|
|
|
|
updater = ["dep:update-informer"]
|
|
|
|
keyring = ["dep:keyring"]
|
2022-12-05 14:47:33 +01:00
|
|
|
|
2023-06-23 21:21:46 +02:00
|
|
|
# [[bin]]
|
|
|
|
# name = "steamguard-cli"
|
2021-08-25 16:26:34 +02:00
|
|
|
# filename = "steamguard" # TODO: uncomment when https://github.com/rust-lang/cargo/issues/9778 is stablized.
|
2021-08-25 14:49:02 +02:00
|
|
|
|
2023-06-23 21:21:46 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "steamguard"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
2021-03-22 02:21:29 +01:00
|
|
|
[dependencies]
|
2021-07-28 05:49:53 +02:00
|
|
|
anyhow = "^1.0"
|
2024-06-02 18:26:00 +02:00
|
|
|
base64 = "0.22.1"
|
2021-03-24 22:49:09 +01:00
|
|
|
text_io = "0.1.8"
|
2023-09-28 23:12:50 +02:00
|
|
|
rpassword = "7.2.0"
|
2024-02-19 14:26:03 +01:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = [
|
|
|
|
"blocking",
|
|
|
|
"json",
|
|
|
|
"cookies",
|
|
|
|
"gzip",
|
|
|
|
"rustls-tls",
|
|
|
|
] }
|
2021-03-24 22:49:09 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2023-07-03 17:42:10 +02:00
|
|
|
rsa = "0.9.2"
|
|
|
|
rand = "0.8.5"
|
2024-06-02 16:59:25 +02:00
|
|
|
clap = { version = "4.5.4", features = ["derive", "cargo", "env"] }
|
|
|
|
clap_complete = "4.5.2"
|
2023-06-29 23:58:48 +02:00
|
|
|
log = "0.4.19"
|
2024-02-19 14:26:03 +01:00
|
|
|
stderrlog = "0.6"
|
2021-04-04 16:40:16 +02:00
|
|
|
cookie = "0.14"
|
|
|
|
regex = "1"
|
|
|
|
lazy_static = "1.4.0"
|
2021-07-27 16:10:20 +02:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2024-03-04 23:18:59 +01:00
|
|
|
steamguard = { version = "^0.13.0", path = "./steamguard" }
|
2021-08-13 00:06:18 +02:00
|
|
|
dirs = "3.0.2"
|
2023-07-05 16:25:03 +02:00
|
|
|
aes = { version = "0.8.3", features = ["zeroize"] }
|
2024-06-02 00:47:24 +02:00
|
|
|
thiserror = "1.0.61"
|
2022-02-18 16:57:50 +01:00
|
|
|
crossterm = { version = "0.23.2", features = ["event-stream"] }
|
2022-12-05 14:47:33 +01:00
|
|
|
qrcode = { version = "0.12.0", optional = true }
|
2023-06-22 22:20:15 +02:00
|
|
|
gethostname = "0.4.3"
|
|
|
|
secrecy = { version = "0.8", features = ["serde"] }
|
2023-07-03 17:42:10 +02:00
|
|
|
zeroize = { version = "^1.6.0", features = ["std", "zeroize_derive"] }
|
2023-06-24 18:06:12 +02:00
|
|
|
serde_path_to_error = "0.1.11"
|
2024-02-19 14:26:03 +01:00
|
|
|
update-informer = { version = "1.0.0", optional = true, default-features = false, features = [
|
|
|
|
"github",
|
|
|
|
] }
|
2023-06-25 19:11:24 +02:00
|
|
|
phonenumber = "0.3"
|
2023-07-05 16:25:03 +02:00
|
|
|
cbc = { version = "0.1.2", features = ["std", "zeroize"] }
|
2023-06-27 01:02:48 +02:00
|
|
|
inout = { version = "0.1.3", features = ["std"] }
|
2023-07-02 16:44:18 +02:00
|
|
|
keyring = { version = "2.0.4", optional = true }
|
2023-07-05 16:25:03 +02:00
|
|
|
argon2 = { version = "0.5.0", features = ["std", "zeroize"] }
|
2023-07-03 17:42:10 +02:00
|
|
|
pbkdf2 = { version = "0.12.1", features = ["parallel"] }
|
|
|
|
sha1 = "0.10.5"
|
2023-07-03 18:25:43 +02:00
|
|
|
rayon = "1.7.0"
|
2024-06-02 00:47:24 +02:00
|
|
|
rqrr = "0.7.1"
|
|
|
|
image = "0.25"
|
2021-08-14 19:39:01 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-19 14:43:52 +01:00
|
|
|
tempfile = "3"
|
2021-08-20 15:37:55 +02:00
|
|
|
proptest = "1"
|
2021-08-20 17:49:03 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = true
|