2021-07-31 18:24:49 +02:00
|
|
|
[package]
|
|
|
|
name = "steamguard"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
description = "Library for generating 2fa codes for Steam and responding to mobile confirmations."
|
|
|
|
|
|
|
|
# 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"
|
|
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "cookies", "gzip"] }
|
|
|
|
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"] }
|
|
|
|
log = "0.4.14"
|
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 03:13:16 +02:00
|
|
|
secrets = "1.1.0"
|