Skip to content

Commit

Permalink
Update deps and fix unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
kvinwang committed Nov 23, 2024
1 parent ca1ee51 commit eadf882
Show file tree
Hide file tree
Showing 10 changed files with 65 additions and 265 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ authors = ["Kevin Wang <[email protected]>"]

[dependencies]
hex = { version = "0.4", default-features = false, features = ["alloc"] }
serde = { version = "1", default-features = false, features = ["derive"] }
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
scale = { package = "parity-scale-codec", version = "3.6.5", default-features = false, features = [
serde = { version = "1.0.215", default-features = false, features = ["derive"] }
base64 = { version = "0.22.1", default-features = false, features = ["alloc"] }
scale = { package = "parity-scale-codec", version = "3.7.0", default-features = false, features = [
"derive",
] }
scale-info = { version = "2", default-features = false, features = ["derive"] }
scale-info = { version = "2.11.6", default-features = false, features = ["derive"] }
chrono = { version = "0.4.31", default-features = false, features = [
"alloc",
"serde",
Expand All @@ -29,26 +29,26 @@ der = { version = "0.7.8", default-features = false, features = ["alloc"] }

log = { version = "0.4.20", default-features = false }

anyhow = { version = "1", optional = true }
anyhow = { version = "1.0.93", optional = true }

ring = { version = "0.17", default-features = false, features = [
"alloc",
] }
reqwest = { version = "0.11.27", optional = true, default-features = false, features = [
reqwest = { version = "0.12.9", optional = true, default-features = false, features = [
"rustls-tls",
"blocking",
"hickory-dns",
] }
urlencoding = { version = "2", optional = true }
serde_json = { version = "1.0.108", optional = true, features = [
serde_json = { version = "1.0.133", optional = true, features = [
"preserve_order",
] }
tracing = { version = "0.1", optional = true }
futures = { version = "0.3", optional = true }
getrandom = { version = "0.2", optional = true, features = ["js"] }
serde-wasm-bindgen = { version = "0.4", optional = true}
serde-wasm-bindgen = { version = "0.6.5", optional = true}
wasm-bindgen = { version = "0.2.95", optional = true }
serde_bytes = { version = "0.11" }
serde_bytes = { package = "serde-human-bytes", version = "0.1" }

[dependencies.webpki]
version = "0.102.8"
Expand All @@ -57,8 +57,9 @@ default-features = false
features = ["alloc", "ring"]

[dev-dependencies]
insta = "1"
tokio = { version = "1", features = ["full"] }
insta = "1.41.1"
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }

[lib]
crate-type = ["cdylib", "rlib"]
Expand All @@ -82,4 +83,3 @@ std = [
]
report = ["std", "tracing", "futures"]
js = ["ring/wasm32_unknown_unknown_js", "getrandom", "serde-wasm-bindgen", "wasm-bindgen"]
hex-bytes = []
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ name = "dcap-qvl"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.91"
clap = { version = "4.5.20", features = ["derive"] }
dcap-qvl = { path = "../", features = ["hex-bytes"] }
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["derive"] }
dcap-qvl = { path = "../" }
hex = "0.4.3"
serde_json = "1.0.132"
tokio = { version = "1.41.0", features = ["full"] }
serde_json = "1.0.133"
tokio = { version = "1.41.1", features = ["full"] }
98 changes: 0 additions & 98 deletions sample/sgx_quote_collateral

This file was deleted.

Loading

0 comments on commit eadf882

Please sign in to comment.