[package] name = "another-steam-totp" description = "Implementation of Steam time-based one-time password." version = "0.3.3" edition = "2021" homepage = "https://github.com/juliarose/another-steam-totp" repository = "https://github.com/juliarose/another-steam-totp" license = "MIT" keywords = ["steam", "totp"] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] base64 = "0.21.2" sha-1 = "0.10.0" hmac = "^0.12" reqwest = { version = "^0.11", features = ["json"], optional = true } serde = { version = "^1.0", features = ["derive"], optional = true } [dev-dependencies] tokio = { version = "1", features = ["full"] } [features] reqwest = ["dep:reqwest", "dep:serde"] [[example]] name = "get_steam_server_time_offset" required-features = ["reqwest"] [package.metadata.docs.rs] all-features = true rustc-args = ["--cfg", "docsrs"]