forked from virtee/sev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (69 loc) · 1.89 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
[package]
name = "sev"
version = "3.0.0"
authors = [
"Nathaniel McCallum <npmccallum@redhat.com>",
"The VirTee Project Developers",
]
license = "Apache-2.0"
edition = "2018"
homepage = "https://github.com/virtee/sev"
repository = "https://github.com/virtee/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/*"]
rust-version = "1.70.0"
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "virtee/sev", workflow = "test" }
#github = { repository = "virtee/sev", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "virtee/sev" }
is-it-maintained-open-issues = { repository = "virtee/sev" }
[lib]
crate-type = ["staticlib", "dylib", "rlib"]
name = 'sev'
path = "src/lib.rs"
doc = false
[features]
default = ["sev", "snp"]
hw_tests = []
dangerous_hw_tests = ["hw_tests"]
sev = []
snp = []
crypto_nossl = ["dep:p384", "dep:rsa", "dep:sha2", "dep:x509-cert"]
[target.'cfg(target_os = "linux")'.dependencies]
iocuddle = "0.1"
[dependencies]
openssl = { version = "0.10", optional = true }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
bitflags = "1.2"
codicon = "3.0"
dirs = "5.0"
serde-big-array = "0.5.1"
static_assertions = "^1.1.0"
bitfield = "^0.13"
uuid = { version = "^1.5", features = ["serde"] }
bincode = "^1.3"
hex = "0.4.3"
libc = "0.2.153"
lazy_static = "1.4.0"
p384 = { version = "0.13.0", optional = true }
rsa = { version = "0.9.2", optional = true }
sha2 = { version = "0.10.8", optional = true }
x509-cert = { version = "0.2.5", optional = true }
byteorder = "1.4.3"
base64 = "0.21.5"
[dev-dependencies]
kvm-ioctls = ">=0.12"
kvm-bindings = ">=0.6"
serial_test = "2.0"