From 8df0ef0368dd3f6fdd2fccb5da458a1fe99f25e0 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 27 Jan 2024 21:45:33 -0800 Subject: Initial version of chkoauth2 --- Cargo.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..9897ca7 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "chkoauth2" +version = "0.1.0" +edition = "2021" +description = "A CGI which validates OAuth2 tokens before calling another script." +license = "MIT" +repository = "https://git.jesterpm.net/pub/jesterpm/chkoauth2.git" +authors = ["Jesse Morgan "] + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[features] +default = ["indieauth"] +indieauth = ["serde"] + +[dependencies] +clap = { version = "4.4.14", features = ["derive"] } +env_logger = "0.11" +log = "0.4" +oauth2 = "4" +serde = {version = "1", features = ["derive"], optional = true } -- cgit v1.2.3