2021-03-22 02:21:29 +01:00
|
|
|
[package]
|
|
|
|
name = "steamguard-cli"
|
|
|
|
version = "0.2.0"
|
|
|
|
authors = ["Carson McManus <carson.mcmanus1@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-07-28 05:49:53 +02:00
|
|
|
anyhow = "^1.0"
|
2021-03-22 02:21:29 +01:00
|
|
|
hmac-sha1 = "^0.1"
|
|
|
|
base64 = "0.13.0"
|
2021-03-24 22:49:09 +01:00
|
|
|
text_io = "0.1.8"
|
|
|
|
rpassword = "5.0"
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "cookies", "gzip"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2021-07-30 04:52:48 +02:00
|
|
|
rsa = "0.5.0"
|
|
|
|
rand = "0.8.4"
|
2021-03-27 14:31:38 +01:00
|
|
|
standback = "0.2.17" # required to fix a compilation error on a transient dependency
|
2021-03-27 15:35:52 +01:00
|
|
|
clap = "2.33.3"
|
|
|
|
log = "0.4.14"
|
|
|
|
stderrlog = "0.4"
|
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"] }
|
2021-07-30 01:42:45 +02:00
|
|
|
termion = "1.5.6"
|