steamguard-cli/steamguard/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "steamguard"
version = "0.10.1"
2021-08-20 18:17:59 +02:00
authors = ["Carson McManus <carson.mcmanus1@gmail.com>"]
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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "^1.0"
sha1 = "^0.10"
base64 = "0.13.0"
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "cookies", "gzip", "rustls-tls", "multipart"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rsa = "0.9.2"
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"
scraper = "0.12.0"
maplit = "1.0.2"
thiserror = "1.0.26"
2021-08-25 06:19:17 +02:00
secrecy = { version = "0.8", features = ["serde"] }
2023-07-09 17:07:02 +02:00
zeroize = { version = "^1.6.0", features = ["std", "zeroize_derive"] }
protobuf = "3.2.0"
protobuf-json-mapping = "3.2.0"
phonenumber = "0.3"
serde_path_to_error = "0.1.11"
hmac = "^0.12"
sha2 = "^0.10"
[build-dependencies]
anyhow = "^1.0"
protobuf = "3.2.0"
protobuf-codegen = "3.2.0"