forked from parallaxsecond/rust-tss-esapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 798 Bytes
/
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
[package]
name = "tss-esapi"
version = "2.0.0"
authors = ["Ionut Mihalcea <ionut.mihalcea@arm.com>",
"Hugues de Valon <hugues.devalon@arm.com>"]
edition = "2018"
description = "Wrapper around TSS 2.0 Enhanced System API"
readme = "README.md"
keywords = ["tpm", "tss", "esys", "esapi"]
categories = ["api-bindings", "external-ffi-bindings", "cryptography"]
license = "Apache-2.0"
repository = "https://github.com/parallaxsecond/rust-tss-esapi"
documentation = "https://docs.rs/crate/tss-esapi"
[dependencies]
bitfield = "0.13.2"
serde = { version = "1.0.103", features = ["derive"] }
mbox = "0.5.0"
log = "0.4.8"
[dev-dependencies]
env_logger = "0.7.1"
[build-dependencies]
bindgen = "0.52.0"
pkg-config = "0.3.17"
[features]
docs = []
[package.metadata.docs.rs]
features = ["docs"]