[package]
edition = "2021"
name = "rustauth-stripe"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stripe integration for RustAuth."
homepage = "https://github.com/salasebas/rustauth"
documentation = "https://docs.rs/rustauth-stripe"
readme = "README.md"
keywords = [
"auth",
"oauth",
"sso",
"scim",
"identity",
]
categories = [
"authentication",
"web-programming",
]
license = "MIT"
repository = "https://github.com/salasebas/rustauth"
[lib]
name = "rustauth_stripe"
path = "src/lib.rs"
[[test]]
name = "customers"
path = "tests/customers.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "organization"
path = "tests/organization.rs"
[[test]]
name = "plugin_surface"
path = "tests/plugin_surface.rs"
[[test]]
name = "routes"
path = "tests/routes.rs"
[[test]]
name = "stripe_api"
path = "tests/stripe_api.rs"
[[test]]
name = "webhook_hooks"
path = "tests/webhook_hooks.rs"
[[test]]
name = "webhook_lifecycle"
path = "tests/webhook_lifecycle.rs"
[[test]]
name = "webhooks"
path = "tests/webhooks.rs"
[dependencies.base64]
version = "0.22"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.http]
version = "1"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rustauth-core]
version = "0.3.0"
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
default-features = false
[dependencies.url]
version = "2"
[dev-dependencies.base64]
version = "0.22"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.hmac]
version = "0.12"
[dev-dependencies.http]
version = "1"
[dev-dependencies.rustauth-core]
version = "0.3.0"
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
]
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
default-features = false
[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"