Skip to content

Commit 2899597

Browse files
committed
Remove path depdency on fortanix-sgx-abi until dependant crates are updated
1 parent b1abc71 commit 2899597

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Cargo.lock

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

intel-sgx/enclave-runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ exclude = ["fake-vdso/.gitignore", "fake-vdso/Makefile", "fake-vdso/main.S"]
2121
[dependencies]
2222
# Project dependencies
2323
sgxs = { version = "0.7.2", path = "../sgxs" }
24-
fortanix-sgx-abi = { version = "0.4.0", path = "../fortanix-sgx-abi" }
24+
fortanix-sgx-abi = { version = "0.4.0" } # TODO: add back `path = "../fortanix-sgx-abi"`
2525
sgx-isa = { version = "0.4.0", path = "../sgx-isa" }
2626
ipc-queue = { version = "0.2.0", path = "../../ipc-queue" }
2727

ipc-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ keywords = ["sgx", "fifo", "queue", "ipc"]
1414
categories = ["asynchronous"]
1515

1616
[dependencies]
17-
fortanix-sgx-abi = { version = "0.4.0", path = "../intel-sgx/fortanix-sgx-abi" }
17+
fortanix-sgx-abi = { version = "0.4.0" } # TODO: add back `path = "../intel-sgx/fortanix-sgx-abi"`
1818

1919
[dev-dependencies]
2020
static_assertions = "1.1.0"

0 commit comments

Comments
 (0)