summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 1ee70e79790a4346b8bb30226afc9f3cfeff4cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "actix-middleware-rfc7662"
version = "0.1.0"
edition = "2021"
description = "Actix-web extractor which validates OAuth2 tokens through an RFC 7662 token introspection endpoint."
license = "MIT"
repository = "https://github.com/jesterpm/actix-middleware-rfc7662"
authors = ["Jesse Morgan <jesse@jesterpm.net>"]

[[bin]]
name = "demo"
path = "src/demo/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4"
actix-web = "4"
oauth2 = "4"
futures-util = "0.3"