-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (41 loc) · 1.84 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
[package]
name = "SPDM-Utils"
repository = "https://github.com/westerndigitalcorporation/SPDM-Utils"
description = "SPDM-Utils is a Linux application designed to support, test and develop SPDM requesters and responders."
version = "1.0.0"
authors = ["Alistair Francis <[email protected]>", "Wilfred Mallawa <[email protected]"]
edition = "2021"
readme = "README.md"
[features]
default = ["std"]
libspdm_tests = []
no_std = []
std = ["clap", "memmap2", "once_cell", "sha2", "env_logger", "serialport", "lazy_static", "colored", "which", "asn1-rs", "x509-parser", "minicbor", "minicbor-derive", "async-std", "futures", "nix"]
[lib]
name = "libspdm"
path = "src/libspdm/lib.rs"
[[bin]]
name = "spdm_utils"
path = "src/main.rs"
[build-dependencies]
bindgen = "0.63"
which = "6.0.0"
[dependencies]
log = "0.4"
serialport = { version = "4.3.0", optional = true }
lazy_static = { version = "1.4.0", optional = true }
clap = { version = "4.0", features = ["derive"], optional = true }
memmap2 = { version = "0.5", optional = true}
once_cell = { version = "1.16", optional = true}
sha2 = { version = "0.10", optional = true}
env_logger = { version = "0.10", optional = true}
colored = { version = "2.1", optional = true }
which = { version = "6.0", optional = true }
asn1-rs = { version = "0.6", optional = true }
x509-parser = { version = "0.15", optional = true }
minicbor = { git = "https://gitlab.com/twittner/minicbor.git", features = ["half", "alloc", "std"], optional = true }
minicbor-derive = { git = "https://gitlab.com/twittner/minicbor.git", features = ["alloc", "std"], optional = true }
async-std = { version = "1.12", features = ["attributes"], optional = true }
futures = { version = "0.3", optional = true }
nix = {version = "0.29.0", features = ["user"], optional = true }
libmctp = { git = "https://github.com/westerndigitalcorporation/libmctp.git" }