[package] name = "steamguard" version = "0.4.0" authors = ["Carson McManus "] edition = "2018" description = "Library for generating 2fa codes for Steam and responding to mobile confirmations." keywords = ["steam", "2fa", "steamguard", "authentication"] # 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" scraper = "0.12.0" maplit = "1.0.2" thiserror = "1.0.26" secrecy = { version = "0.8", features = ["serde"] }