This repository has been archived by the owner on Oct 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
80 lines (70 loc) · 2.39 KB
/
Cargo.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "enarx-keepldr"
version = "0.1.0"
authors = ["Nathaniel McCallum <[email protected]>"]
license = "Apache-2.0"
edition = "2018"
build = "build.rs"
homepage = "https://github.com/enarx/enarx-keepldr"
repository = "https://github.com/enarx/enarx-keepldr"
description = "Enarx Keep Loader"
readme = "README.md"
keywords = ["sgx", "sev", "kvm", "tee"]
categories = ["os", "os::linux-apis", "network-programming", "hardware-support"]
exclude = [ ".gitignore", ".github/*" ]
include = [ "src", "internal" ]
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "enarx/enarx-keepldr", workflow = "test" }
#github = { repository = "enarx/enarx-keepldr", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "enarx/enarx-keepldr" }
is-it-maintained-open-issues = { repository = "enarx/enarx-keepldr" }
[features]
default = ["backend-kvm", "backend-sgx"]
backend-kvm = ["x86_64", "kvm-bindings", "kvm-ioctls"]
backend-sgx = ["x86_64", "sgx"]
[dependencies]
sgx = { git = "https://github.com/enarx/sgx", rev = "57df3753a0ea1777963dbf3023452993df2edb8c", features = ["openssl"], optional = true }
sallyport = { git = "https://github.com/enarx/sallyport", rev = "a567a22665c7e5ba88a8c4acd64ab43ee32b4681", features = [ "asm" ] }
x86_64 = { version = "^0.14.6", default-features = false, optional = true }
koine = { git = "https://github.com/enarx/koine", optional = true }
primordial = { version = "0.3", features = ["alloc"] }
kvm-bindings = { version = "0.5", optional = true }
kvm-ioctls = { version = "0.10", optional = true }
itertools = "0.10"
protobuf = "2.22"
structopt = "0.3"
openssl = "0.10"
iocuddle = "0.1"
ciborium = "0.1"
colorful = "0.2"
mmarinus = "0.2"
nbytes = "0.1"
anyhow = "1.0"
semver = "1.0"
goblin = "0.4"
libc = "0.2"
lset = "0.2"
vdso = "0.1"
[build-dependencies]
cc = "1.0"
walkdir = "2"
protobuf-codegen-pure = "2.25"
sallyport = { git = "https://github.com/enarx/sallyport", rev = "a567a22665c7e5ba88a8c4acd64ab43ee32b4681", features = [ "asm" ] }
[dev-dependencies]
process_control = "3.0"
serial_test = "0.5"
tempdir = "0.3.7"
[[example]]
name="echo"
path="tests/bin/echo.rs"
[[example]]
name="memory_stress_test"
path="tests/bin/memory_stress_test.rs"
[[example]]
name="memspike"
path="tests/bin/memspike.rs"
[[example]]
name="unix_echo"
path="tests/bin/unix_echo.rs"