steam-connect 1.3.0

Implementation Steam web authorization for simple use in projects with or without actix_web
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "steam-connect"
version = "1.3.0"
authors = ["AspectUnk <aspectunk@gmail.com>"]
description = "Implementation Steam web authorization for simple use in projects with or without actix_web"
documentation = "https://docs.rs/steam-connect"
readme = "README.md"
keywords = [
    "steam",
    "login",
    "auth",
    "openid",
    "actix_web",
]
categories = [
    "asynchronous",
    "authentication",
    "web-programming",
]
license = "MIT"
repository = "https://github.com/AspectUnk/steam-connect-rs"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[[example]]
name = "actix"
path = "examples/actix.rs"

[dependencies.actix-web]
version = "4.2"
optional = true

[dependencies.lazy_static]
version = "1.4"

[dependencies.regex]
version = "1.6"

[dependencies.reqwest]
version = "0.11"
features = [
    "json",
    "rustls",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_qs]
version = "0.10"

[dependencies.url]
version = "2.3"

[dev-dependencies.actix-web]
version = "4.2"

[dev-dependencies.env_logger]
version = "0.9"

[features]
actix = ["actix-web"]
default = ["actix"]