2021-07-31 18:24:49 +02:00
|
|
|
[package]
|
|
|
|
name = "steamguard"
|
2023-06-30 01:04:11 +02:00
|
|
|
version = "0.9.3"
|
2021-08-20 18:17:59 +02:00
|
|
|
authors = ["Carson McManus <carson.mcmanus1@gmail.com>"]
|
2021-07-31 18:24:49 +02:00
|
|
|
edition = "2018"
|
|
|
|
description = "Library for generating 2fa codes for Steam and responding to mobile confirmations."
|
2021-08-20 18:17:59 +02:00
|
|
|
keywords = ["steam", "2fa", "steamguard", "authentication"]
|
2021-08-25 15:22:36 +02:00
|
|
|
repository = "https://github.com/dyc3/steamguard-cli/tree/master/steamguard"
|
|
|
|
license = "MIT OR Apache-2.0"
|
2021-07-31 18:24:49 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "^1.0"
|
|
|
|
hmac-sha1 = "^0.1"
|
|
|
|
base64 = "0.13.0"
|
2023-06-22 22:20:15 +02:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "cookies", "gzip", "rustls-tls", "multipart"] }
|
2021-07-31 18:24:49 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
rsa = "0.5.0"
|
|
|
|
rand = "0.8.4"
|
|
|
|
standback = "0.2.17" # required to fix a compilation error on a transient dependency
|
|
|
|
cookie = "0.14"
|
|
|
|
regex = "1"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2023-06-29 23:58:48 +02:00
|
|
|
log = "0.4.19"
|
2021-07-31 22:57:51 +02:00
|
|
|
scraper = "0.12.0"
|
2021-08-08 00:47:39 +02:00
|
|
|
maplit = "1.0.2"
|
2021-08-10 00:44:42 +02:00
|
|
|
thiserror = "1.0.26"
|
2021-08-25 06:19:17 +02:00
|
|
|
secrecy = { version = "0.8", features = ["serde"] }
|
2022-06-19 20:42:07 +02:00
|
|
|
zeroize = "^1.4.3"
|
2023-06-22 22:20:15 +02:00
|
|
|
protobuf = "3.2.0"
|
|
|
|
protobuf-json-mapping = "3.2.0"
|
2023-06-24 19:45:03 +02:00
|
|
|
hmac-sha256 = "1.1.7"
|
2023-06-25 19:11:24 +02:00
|
|
|
phonenumber = "0.3"
|
2023-06-27 01:11:15 +02:00
|
|
|
serde_path_to_error = "0.1.11"
|
2023-06-22 22:20:15 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
anyhow = "^1.0"
|
|
|
|
protobuf = "3.2.0"
|
|
|
|
protobuf-codegen = "3.2.0"
|