async-stripe 0.15.0

API bindings for the Stripe HTTP API
Documentation
[[example]]
name = "checkout"
required-features = ["async"]

[[example]]
name = "connect"
required-features = ["async"]

[[example]]
name = "customer"
required-features = ["async"]

[[example]]
name = "payment-intent"
required-features = ["async"]

[[example]]
name = "payment-link"
required-features = ["async"]

[[example]]
name = "strategy"
required-features = ["async"]

[[example]]
name = "subscriptions"
required-features = ["async"]

[[example]]
name = "webhook-axum"
required-features = ["async"]

[[example]]
name = "webhook-actix"
required-features = ["async"]
[dependencies.async-global-executor]
optional = true
version = "2.0, <2.1"

[dependencies.async-std]
optional = true
version = "1.8,<1.11"

[dependencies.chrono]
features = ["serde"]
optional = true
version = "0.4"

[dependencies.futures-util]
optional = true
version = "0.3.21"

[dependencies.hex]
optional = true
version = "0.4"

[dependencies.hmac]
optional = true
version = "0.12"

[dependencies.http-types]
default-features = false
version = "2.12.0"

[dependencies.hyper]
default-features = false
features = ["http1", "http2", "client", "tcp"]
optional = true
version = "0.14"

[dependencies.hyper-rustls]
optional = true
version = "0.22"

[dependencies.hyper-tls]
optional = true
version = "0.5"

[dependencies.serde]
features = ["derive"]
version = ">=1.0.79"

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_qs]
version = "0.9"

[dependencies.sha2]
optional = true
version = "0.10"

[dependencies.smart-default]
version = "0.6.0"

[dependencies.smol_str]
version = "0.1"

[dependencies.surf]
optional = true
version = "2.1"

[dependencies.thiserror]
version = "1.0.24"

[dependencies.tokio]
optional = true
version = "1.2"

[dependencies.uuid]
features = ["v4"]
optional = true
version = "0.8"
[dev-dependencies.actix-web]
version = "4.0.1"

[dev-dependencies.anyhow]
version = "1.0.38"

[dev-dependencies.async-std]
features = ["attributes"]
version = "1.10.0"

[dev-dependencies.axum]
version = "0.4.8"

[dev-dependencies.httpmock]
version = "0.6.6"

[dev-dependencies.lazy_static]
version = "1.4"

[dev-dependencies.tokio]
features = ["rt", "macros"]
version = "1.2"

[dev-dependencies.tokio-test]
version = "0.4.2"

[features]
async = ["futures-util"]
billing = []
blocking = []
checkout = ["billing"]
connect = []
default = ["full", "webhook-events", "uuid", "stream"]
events = []
fraud = []
full = ["checkout", "billing", "connect", "fraud", "issuing", "orders", "sigma", "terminal", "webhook-endpoints"]
hyper-client = ["hyper", "http-types/hyperium_http"]
issuing = []
orders = []
runtime-async-std-surf = ["async-std", "surf", "async"]
runtime-blocking = ["tokio", "tokio/rt", "hyper-client", "hyper-tls", "blocking"]
runtime-blocking-rustls = ["tokio", "tokio/rt", "hyper-client", "hyper-rustls", "blocking"]
runtime-tokio-hyper = ["tokio", "hyper-client", "hyper-tls", "async"]
runtime-tokio-hyper-rustls = ["tokio", "hyper-client", "hyper-rustls", "async"]
sigma = []
stream = []
terminal = []
webhook-endpoints = []
webhook-events = ["events", "hmac", "sha2", "chrono", "hex"]

[lib]
name = "stripe"

[package]
authors = ["Anna Baldwin <abaldwin@developers.wyyerd.com>", "Kevin Stenerson <kestred@users.noreply.github.com>", "Alexander Lyon <arlyon@me.com>"]
categories = ["api-bindings"]
description = "API bindings for the Stripe HTTP API"
documentation = "https://docs.rs/async-stripe"
edition = "2018"
homepage = "https://github.com/arlyon/async-stripe"
keywords = ["stripe", "v1", "api", "async"]
license = "MIT OR Apache-2.0"
name = "async-stripe"
readme = "README.md"
repository = "https://github.com/arlyon/async-stripe"
rust-version = "1.54.0"
version = "0.15.0"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples=examples"]
features = ["runtime-tokio-hyper"]