summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2022-03-20 17:39:10 -0700
committerJesse Morgan <jesse@jesterpm.net>2022-03-20 17:39:10 -0700
commit237accf0a1313ff5d73fe18096dd7229e0f8ba62 (patch)
treea7b8660ab4555706cf0f0c42f758f7afc46524eb /Cargo.toml
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..dbb765c
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,21 @@
+[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"
+awc = "3"
+oauth2 = "4"
+futures-util = "0.3" \ No newline at end of file