Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 64 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ categories = ["authentication", "command-line-utilities"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
tokio = { version = "1.52", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json"] }
thiserror = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions pam-prmana/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ thiserror.workspace = true
clap = { version = "4", features = ["derive"] }
libc = "0.2"
pamsm = { version = "0.5", features = ["libpam"] }
jsonwebtoken = { version = "10.3", features = ["aws_lc_rs"] }
jsonwebtoken = { version = "10.4", features = ["aws_lc_rs"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
url = "2.5"
chrono = { version = "0.4", features = ["serde"] }
Expand All @@ -54,15 +54,15 @@ sha1 = "0.10"
sha2 = "0.10"
hmac = "0.12"
# Base32 decoding for TOTP seeds (RFC 6238 / YubiKey OTP enrollment)
data-encoding = "2.6"
data-encoding = "2.11"
hex = "0.4"
subtle = "2.5"
uuid = { version = "1", features = ["v4"] }
regex = "1.10"
secrecy = "0.10"

[dependencies.ml-dsa]
version = "0.1.0-rc.7"
version = "0.1.0-rc.11"
optional = true

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions prmana-agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ secrecy = "0.10"
libc = "0.2"

# OIDC/JWT
jsonwebtoken = { version = "10.3", features = ["aws_lc_rs"] }
jsonwebtoken = { version = "10.4", features = ["aws_lc_rs"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "blocking", "rustls-tls"] }

# Async runtime
Expand Down Expand Up @@ -92,7 +92,7 @@ version = "7"
optional = true

[dependencies.ml-dsa]
version = "0.1.0-rc.7"
version = "0.1.0-rc.11"
optional = true
features = ["zeroize"]

Expand All @@ -101,7 +101,7 @@ features = ["zeroize"]
# available via homebrew. The `--features tpm` feature compiles on both platforms
# but TpmSigner is only available on Linux (cfg(target_os = "linux")).
[target.'cfg(target_os = "linux")'.dependencies.tss-esapi]
version = "7.6"
version = "7.7"
optional = true

# Shared OIDC discovery and JWKS types (extracted from pam-prmana).
Expand Down
2 changes: 1 addition & 1 deletion prmana-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tracing.workspace = true
jsonwebtoken = { version = "10.3", features = ["aws_lc_rs"] }
jsonwebtoken = { version = "10.4", features = ["aws_lc_rs"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
parking_lot = "0.12"
Loading