]> git.proxmox.com Git - proxmox.git/blame - proxmox-login/Cargo.toml
acme-api: add debian packaging
[proxmox.git] / proxmox-login / Cargo.toml
CommitLineData
26f586d5
DM
1[package]
2name = "proxmox-login"
2b56eba3 3version = "0.1.1"
26f586d5
DM
4description = "proxmox product authentication api"
5edition.workspace = true
6license.workspace = true
7
8exclude.workspace = true
9
10[dependencies]
11base64.workspace = true
12percent-encoding.workspace = true
13serde = { workspace = true, features = [ "derive" ] }
14serde_json.workspace = true
15
16# For webauthn types
17webauthn-rs = { workspace = true, optional = true }
18
19# For `Authentication::set_auth_headers`
20http = { version = "0.2.4", optional = true }
21
b7a64cd4
DM
22[target.'cfg(target_arch="wasm32")'.dependencies]
23js-sys = "0.3.55"
24
26f586d5
DM
25[features]
26default = []
27webauthn = [ "dep:webauthn-rs" ]
28http = ["dep:http"]