forked from enarx-archive/sev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1.19 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
[package]
name = "sev"
version = "0.2.0"
authors = ["Nathaniel McCallum <npmccallum@redhat.com>"]
license = "Apache-2.0"
edition = "2018"
homepage = "https://github.com/enarx/sev"
repository = "https://github.com/enarx/sev"
description = "Library for AMD SEV"
readme = "README.md"
keywords = ["amd", "sev"]
categories = ["os", "os::linux-apis", "parsing", "network-programming", "hardware-support"]
exclude = [ ".gitignore", ".github/*" ]
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "enarx/sev", workflow = "test" }
#github = { repository = "enarx/sev", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "enarx/sev" }
is-it-maintained-open-issues = { repository = "enarx/sev" }
[features]
default = []
hw_tests = []
dangerous_hw_tests = ["hw_tests"]
[dependencies]
openssl = { version = "0.10", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
bitflags = "1.2"
codicon = "3.0"
bitfield = "0.13"
dirs = "4.0"
iocuddle = "0.1"
[dev-dependencies]
dirs = "4.0"
kvm-bindings = "0.5"
kvm-ioctls = "0.11"
mmarinus = "0.2"
serial_test = "0.6"