forked from fortanix/rust-sgx
-
Notifications
You must be signed in to change notification settings - Fork 0
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: fortanix#404 YxC: fortanix#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
Jan 17, 2024
1 parent
8b187bd
commit 37461c2
Showing
25 changed files
with
2,273 additions
and
87 deletions.
There are no files selected for viewing
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.