blob: 0f9664c2568477bd6bb7fd0f8875ff1e1cb62551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "actix-middleware-rfc7662"
version = "0.2.1"
edition = "2021"
description = "Actix-web extractor which validates OAuth2 tokens through an RFC 7662 token introspection endpoint."
license = "MIT"
repository = "https://git.jesterpm.net/pub/jesterpm/actix-middleware-rfc7662.git"
authors = ["Jesse Morgan <jesse@jesterpm.net>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "demo"
required-features = ["indieauth"]
[features]
indieauth = ["serde"]
[dependencies]
log = "0.4"
actix-web = "4"
oauth2 = "4"
futures-util = "0.3"
serde = {version = "1", features = ["derive"], optional = true }
|