Skip to content

Commit

Permalink
bump: jsonwebtoken to 9
Browse files Browse the repository at this point in the history
Close confidential-containers#289

Signed-off-by: Xynnn007 <[email protected]>
  • Loading branch information
Xynnn007 committed Jan 16, 2024
1 parent cd9bef3 commit e9b21fa
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
18 changes: 10 additions & 8 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ chrono = "0.4.19"
clap = { version = "4", features = ["derive"] }
env_logger = "0.10.0"
hex = "0.4.3"
jsonwebtoken = "9"
kbs-types = "0.5"
log = "0.4.17"
prost = "0.11.0"
Expand Down
6 changes: 3 additions & 3 deletions attestation-service/verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sgx-verifier = [ "scroll", "sgx-dcap-quoteverify-rs" ]
az-snp-vtpm-verifier = [ "az-snp-vtpm", "sev", "snp-verifier" ]
snp-verifier = [ "asn1-rs", "openssl", "sev", "x509-parser" ]
csv-verifier = [ "openssl", "csv-rs", "codicon" ]
cca-verifier = [ "ear", "veraison-apiclient" ]
cca-verifier = [ "ear", "jsonwebtoken", "veraison-apiclient" ]

[dependencies]
anyhow.workspace = true
Expand All @@ -27,7 +27,7 @@ codicon = { version = "3.0", optional = true }
csv-rs = { git = "https://gitee.com/anolis/csv-rs", rev = "9d8882e", optional = true }
eventlog-rs = { version = "0.1.3", optional = true }
hex.workspace = true
jsonwebtoken = "8"
jsonwebtoken = { workspace = true, default-features = false, optional = true }
kbs-types.workspace = true
log.workspace = true
openssl = { version = "0.10.55", optional = true }
Expand All @@ -38,7 +38,7 @@ sev = { version = "1.2.0", features = ["openssl", "snp"], optional = true }
sgx-dcap-quoteverify-rs = { git = "https://github.com/intel/SGXDataCenterAttestationPrimitives", tag = "DCAP_1.16", optional = true }
strum.workspace = true
veraison-apiclient = { git = "https://github.com/chendave/rust-apiclient", branch = "token", optional = true }
ear = { git = "https://github.com/veraison/rust-ear", rev = "cc6ea53", optional = true }
ear = { git = "https://github.com/veraison/rust-ear", rev = "43f7f480d09ea2ebc03137af8fbcd70fe3df3468", optional = true }
x509-parser = { version = "0.14.0", optional = true }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion kbs/src/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cfg-if.workspace = true
clap = { version = "4.3.21", features = ["derive", "env"] }
config = "0.13.3"
env_logger.workspace = true
jsonwebtoken = { version = "8", default-features = false, optional = true }
jsonwebtoken = { workspace = true, default-features = false, optional = true }
jwt-simple = "0.11.6"
kbs-types.workspace = true
lazy_static = "1.4.0"
Expand Down

0 comments on commit e9b21fa

Please sign in to comment.