summaryrefslogtreecommitdiffstats
path: root/vendor/fortanix-sgx-abi/Cargo.toml
blob: 28e2993bb055597ecf2caaa6c0fe6a0ced4c32e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
name = "fortanix-sgx-abi"
version = "0.5.0"
authors = ["Fortanix, Inc."]
description = """
An interface for Intel SGX enclaves. This is the interface for the
`x86_64-fortanix-unknown-sgx` target.

This is a small yet functional interface suitable for writing larger enclaves. 
In contrast to other enclave interfaces, this interface is primarly designed 
for running entire applications in an enclave.

This crate fully describes the type-level interface complete with 
documentation. For implementors, this crate contains all the type definitions
and a macro with the function definitions.
"""
homepage = "https://edp.fortanix.com/"
documentation = "https://edp.fortanix.com/docs/api/fortanix_sgx_abi/"
keywords = [
    "sgx",
    "enclave",
]
categories = ["os"]
license = "MPL-2.0"
repository = "https://github.com/fortanix/rust-sgx"

[package.metadata.docs.rs]
features = ["docs"]

[dependencies.compiler_builtins]
version = "0.1.0"
optional = true

[dependencies.core]
version = "1.0.0"
optional = true
package = "rustc-std-workspace-core"

[features]
docs = []
rustc-dep-of-std = [
    "core",
    "compiler_builtins/rustc-dep-of-std",
]