Skip to content

Commit

Permalink
Merge pull request #101 from himmelblau-idm/dmulder/windows_hello
Browse files Browse the repository at this point in the history
Windows Hello PIN implementation
  • Loading branch information
dmulder committed Apr 16, 2024
2 parents 6d95cc4 + 913a312 commit 826dbb8
Show file tree
Hide file tree
Showing 5 changed files with 443 additions and 239 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.2.0"
version = "0.3.0"
authors = [
"David Mulder <dmulder@suse.com>"
]
Expand All @@ -37,7 +37,7 @@ tracing-subscriber = "^0.3.17"
tracing = "^0.1.37"
himmelblau_unix_common = { path = "src/common" }
kanidm_unix_common = { path = "src/glue" }
msal = { version = "0.1.15" }
msal = { version = "0.1.16" }
graph = { path = "src/graph" }
clap = { version = "^4.5", features = ["derive", "env"] }
clap_complete = "^4.4.1"
Expand Down Expand Up @@ -77,7 +77,7 @@ tracing-forest = "^0.1.6"
rusqlite = "^0.31.0"
hashbrown = { version = "0.14.0", features = ["serde", "inline-more", "ahash"] }
lru = "^0.12.3"
kanidm_lib_crypto = { path = "./src/kanidm/libs/crypto", version = "0.2.0" }
kanidm_lib_crypto = { path = "./src/kanidm/libs/crypto", version = "0.3.0" }
kanidm_utils_users = { path = "./src/kanidm/libs/users" }
walkdir = "2"
csv = "1.2.2"
Expand All @@ -101,5 +101,5 @@ opentelemetry-stdout = { version = "0.1.0", features = [
] }
tonic = "0.11.0"
tracing-opentelemetry = "0.21.0"
compact_jwt = { version = "0.3.5", features = ["hsm-crypto", "msextensions"] }
kanidm-hsm-crypto = { version = "^0.1.6", features = ["msextensions"] }
compact_jwt = { version = "0.4.0-dev", features = ["hsm-crypto", "msextensions"] }
kanidm-hsm-crypto = { version = "^0.2.0", features = ["msextensions"] }
4 changes: 2 additions & 2 deletions clippy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#
########################################################################

# default is 7, 8's ok. https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
too-many-arguments-threshold = 8
# default is 7, 9's ok. https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
too-many-arguments-threshold = 9

# default's 250
type-complexity-threshold = 300
Loading

0 comments on commit 826dbb8

Please sign in to comment.