[dependencies.actix-web]
version = "4"
[dependencies.actix-web-httpauth]
version = "0.8.2"
[dependencies.base64]
version = "0.22.1"
[dependencies.futures]
version = "0.3"
[dependencies.jsonwebtoken]
version = "9.3.1"
[dependencies.reqwest]
default-features = false
features = ["json"]
version = "0.12.19"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies.actix-rt]
version = "2.10.0"
[dev-dependencies.httpmock]
version = "0.7.0"
[dev-dependencies.openssl]
features = []
version = "0.10.73"
[dev-dependencies.rand]
version = "0.8.5"
[dev-dependencies.sha2]
version = "0.10"
[[example]]
name = "server"
path = "examples/server.rs"
[features]
default = ["openssl"]
openssl = ["reqwest/default-tls"]
rustls = ["reqwest/rustls-tls"]
[lib]
name = "actix_firebase_auth"
path = "src/lib.rs"
[lints.clippy]
allow_attributes = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_unsafe_ops_per_block = "warn"
must_use_candidate = "allow"
undocumented_unsafe_blocks = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing-abi = "warn"
missing_docs = "warn"
unsafe_code = "warn"
unsafe_op_in_unsafe_fn = "warn"
[package]
authors = ["Nelson Dominguez <ekkolon@proton.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["web-programming", "authentication"]
description = "Firebase ID token verification for Actix Web using Google's JWKs"
edition = "2021"
keywords = ["actix", "firebase", "auth", "jwt", "jwk"]
license = "MIT OR Apache-2.0"
name = "actix-firebase-auth"
readme = "README.md"
repository = "https://github.com/ekkolon/actix-firebase-auth"
rust-version = "1.82"
version = "0.3.0"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true