Skip to content
Open
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
115 changes: 26 additions & 89 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 enclave-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ categories = ["os", "hardware-support"]
anyhow = "1.0" # MIT/Apache-2.0
lazy_static = "1.5.0" # MIT/Apache-2.0
num_cpus = "1.10.0" # MIT/Apache-2.0
tokio = { version = "1.35", features = ["full"] } # MIT
tokio = { version = "1.52", features = ["full"] } # MIT
pin-project-lite = "0.2.16" # MIT/Apache-2.0
futures = { version = "0.3", features = ["compat", "io-compat"] } # MIT/Apache-2.0

Expand Down
2 changes: 1 addition & 1 deletion fortanix-vme/fortanix-vme-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ sev = { version = "7.1.0", features = [
"openssl",
] } # Unfortunately, we need the `openssl` feature - https://github.com/virtee/sev/issues/387
thiserror = "1.0"
tokio = { version = "1.35", features = ["full"] } # MIT
tokio = { version = "1.52", features = ["full"] } # MIT
tokio-vsock = { version = "0.7.2" }
vsock = "0.5"
2 changes: 1 addition & 1 deletion intel-sgx/enclave-runner-sgx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ libc = "0.2.48" # MIT/Apache-2.0
nix = "0.13.0" # MIT
openssl = { version = "0.10", optional = true } # Apache-2.0
crossbeam = "0.8.4" # MIT/Apache-2.0
tokio = { version = "1.35", features = ["full"] } # MIT
tokio = { version = "1.52", features = ["full"] } # MIT
futures = { version = "0.3", features = ["compat", "io-compat"] } # MIT/Apache-2.0

[features]
Expand Down
2 changes: 1 addition & 1 deletion ipc-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static_assertions = "1.1.0"

[target.'cfg(not(target_env = "sgx"))'.dev-dependencies]
futures = { version = "0.3", features = ["compat", "io-compat"] }
tokio = { version = "1.35", features = ["full"] }
tokio = { version = "1.52", features = ["full"] }

[package.metadata.fortanix-sgx]
# set number of threads so tests can run properly
Expand Down