-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from vn971/vas/async-usercalls-scratch
Async usercall interface for SGX enclaves
- Loading branch information
Showing
26 changed files
with
2,409 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
.cargo | ||
/target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[package] | ||
name = "async-usercalls" | ||
version = "0.5.0" | ||
authors = ["Fortanix, Inc."] | ||
license = "MPL-2.0" | ||
edition = "2018" | ||
description = """ | ||
An interface for asynchronous usercalls in SGX enclaves. | ||
This is an SGX-only crate, you should compile it with the `x86_64-fortanix-unknown-sgx` target. | ||
""" | ||
repository = "https://github.com/fortanix/rust-sgx" | ||
documentation = "https://edp.fortanix.com/docs/api/async_usercalls/" | ||
homepage = "https://edp.fortanix.com/" | ||
keywords = ["sgx", "async", "usercall"] | ||
categories = ["asynchronous"] | ||
|
||
[dependencies] | ||
# Project dependencies | ||
ipc-queue = { version = "0.2", path = "../../ipc-queue" } | ||
fortanix-sgx-abi = { version = "0.5.0", path = "../fortanix-sgx-abi" } | ||
|
||
# External dependencies | ||
lazy_static = "1.4.0" # MIT/Apache-2.0 | ||
crossbeam-channel = "0.5" # MIT/Apache-2.0 | ||
fnv = "1.0" # MIT/Apache-2.0 | ||
|
||
[dev-dependencies] | ||
rand = "0.8" | ||
|
||
# For cargo test --target x86_64-fortanix-unknown-sgx | ||
[package.metadata.fortanix-sgx] | ||
threads = 128 |
Oops, something went wrong.