-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Async usercall interface for SGX enclaves
Credits for this commit go to: Mohsen: #404 YxC: #441 This commit is an attempt to have the async-usercalls finally merged into the main codebase (master branch).
- Loading branch information
Vasili Novikov
committed
Aug 28, 2023
1 parent
66e7a21
commit 12728f3
Showing
26 changed files
with
2,275 additions
and
89 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
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,29 @@ | ||
[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 | ||
|
||
# For cargo test --target x86_64-fortanix-unknown-sgx | ||
[package.metadata.fortanix-sgx] | ||
threads = 128 |
Oops, something went wrong.