forked from virtee/sevctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.28 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 = "sevctl"
version = "0.3.2"
authors = ["The Enarx/VirTEE Project Developers"]
edition = "2018"
license = "Apache-2.0"
homepage = "https://github.com/virtee/sevctl"
repository = "https://github.com/virtee/sevctl"
description = "Administrative utility for AMD SEV"
readme = "README.md"
keywords = ["amd", "sev"]
categories = ["os", "os::linux-apis", "parsing", "cryptography", "hardware-support"]
exclude = [ ".gitignore", ".github/*" ]
rust-version = "1.51"
[badges]
# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
github = { repository = "virtee/sevctl", workflow = "test" }
#github = { repository = "virtee/sevctl", workflow = "lint" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "virtee/sevctl" }
is-it-maintained-open-issues = { repository = "virtee/sevctl" }
[dependencies]
sev = { version = "1.0.1", features = ["openssl"] }
serde = { version = "1.0", features = ["derive"] }
# serde_json is just for the example, not required in general
serde_json = "1.0"
bincode = "1.3.3"
structopt = "0.3"
codicon = "3.0"
colorful = "0.2.1"
httparse = "1.8"
libc = "0.2.126"
native-tls = "0.2"
url = "2.2"
base64 = "0.13.0"
openssl = "0.10"
uuid = "1.1.2"
anyhow = "1.0.57"
[dev-dependencies]
tempfile = "3.3.0"