blob: a8120b8e65ae5dd4e05075a51a88d0d02baaaaae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[package]
name = "chkoauth2"
version = "0.2.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 }
|