forked from parallaxsecond/rust-tss-esapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 978 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
33
34
35
36
37
38
[package]
name = "tss-esapi"
version = "4.0.8-alpha.1"
authors = ["Ionut Mihalcea <[email protected]>",
"Hugues de Valon <[email protected]>"]
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"
enumflags2 = "0.6.3"
num-derive = "0.3.0"
num-traits = "0.2.11"
hostname-validator = "1.0.0"
regex = "1.3.9"
zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
[dev-dependencies]
env_logger = "0.7.1"
[build-dependencies]
bindgen = "0.54.0"
pkg-config = "0.3.17"
[features]
docs = []
[package.metadata.docs.rs]
features = ["docs"]