diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
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 <jesse@jesterpm.net>"] + +# 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 } |