]> git.proxmox.com Git - proxmox.git/blob - Cargo.toml
bump proxmox-sys dep to 0.4
[proxmox.git] / Cargo.toml
1 [package]
2 name = "proxmox-openid"
3 version = "0.9.6"
4 authors = ["Dietmar Maurer <dietmar@proxmox.com>"]
5 edition = "2018"
6 license = "AGPL-3"
7 exclude = [
8 "build",
9 "debian",
10 ]
11
12 [lib]
13 name = "proxmox_openid"
14 path = "src/lib.rs"
15
16 [dependencies]
17 anyhow = "1.0"
18 http = "0.2"
19 nix = "0.24"
20 openidconnect = { version = "2.2", default-features = false, features = ["accept-rfc3339-timestamps"] }
21 serde = { version = "1.0", features = ["derive"] }
22 serde_json = "1.0"
23 thiserror="1.0"
24 ureq = { version = "2.4", default-features = false, features = ["native-tls", "gzip"] }
25 native-tls = "0.2"
26 url = "2.1"
27
28 proxmox-time = "1"
29 proxmox-sys = { version = "0.4", features = ["timer"] }