mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* implementation of passkeys as an auth mech * listing the current passkeys when asking to remove one * tweaking insecure dev server config so passkeys will work * Fix domain rename Co-authored-by: James Hodgkinson <james@terminaloutcomes.com>
25 lines
932 B
TOML
25 lines
932 B
TOML
[package]
|
|
name = "kanidm_client"
|
|
version = "1.1.0-alpha.8"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
rust-version = "1.59"
|
|
edition = "2021"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Client Library"
|
|
documentation = "https://docs.rs/kanidm_client/latest/kanidm_client/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
[dependencies]
|
|
tracing = "^0.1.35"
|
|
reqwest = { version = "^0.11.11", features=["cookies", "json", "native-tls"] }
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha.8" }
|
|
serde = { version = "^1.0.139", features = ["derive"] }
|
|
serde_json = "^1.0.82"
|
|
tokio = { version = "^1.20.0", features = ["rt", "net", "time", "macros", "sync", "signal"] }
|
|
toml = "^0.5.9"
|
|
uuid = { version = "^1.1.2", features = ["serde", "v4"] }
|
|
url = { version = "^2.2.2", features = ["serde"] }
|
|
webauthn-rs-proto = { version = "0.4.2-beta.3", features = ["wasm"] }
|
|
|