-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
62 lines (57 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "pizauth"
description = "Command-line OAuth2 authentication daemon"
version = "1.0.6"
repository = "https://github.com/ltratt/pizauth/"
authors = ["Laurence Tratt <laurie@tratt.net>"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
categories = ["authentication"]
keywords = ["oauth", "oauth2", "authentication"]
edition = "2021"
[build-dependencies]
cfgrammar = "0.13"
lrlex = "0.13"
lrpar = "0.13"
rerun_except = "1"
[dependencies]
base64 = "0.22"
bincode = "1"
cfgrammar = "0.13"
chacha20poly1305 = "0.10"
chrono = "0.4"
getopts = "0.2"
getrandom = "0.2"
hostname = "0.4"
log = "0.4"
lrlex = "0.13"
lrpar = "0.13"
nix = { version="0.29", features=["fs", "signal"] }
rand = "0.8"
serde = { version="1.0", features=["derive"] }
sha2 = "0.10"
serde_json = "1"
stderrlog = "0.6"
syslog = "7.0.0"
ureq = "2"
url = "2"
urlencoding = "2"
wait-timeout = "0.2"
whoami = "1.5"
rustls = { version = "0.23.12", features = ["ring", "std"], default-features = false }
rcgen = { version = "0.13.1", features = ["crypto", "ring"], default-features = false }
[target.'cfg(target_os="openbsd")'.dependencies]
pledge = "0.4"
unveil = "0.3"
[target.'cfg(target_os="macos")'.dependencies]
libc = "0.2"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true