-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 901 Bytes
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
[package]
name = "tss-esapi-sys"
version = "0.6.0-alpha.1"
authors = ["Parsec Project Contributors"]
edition = "2021"
description = "FFI 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-sys"
links = "tss2-esys"
rust-version = "1.85.0"
[build-dependencies]
bindgen = { version = "0.72.0", optional = true }
pkg-config = "0.3.18"
target-lexicon = "0.13.2"
cfg-if = "1.0.0"
semver = "1.0.7"
autotools = { version = "0.2.6", optional = true }
[target.'cfg(windows)'.build-dependencies]
msbuild = { version = "0.2.0", optional = true }
[features]
generate-bindings = ["bindgen", "dep:msbuild"]
bundled = ["dep:autotools", "dep:msbuild"]