forked from keylime/rust-keylime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 1016 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
39
40
[package]
authors = ["Keylime Authors"]
edition = "2018"
name = "keylime_agent"
version = "0.1.0"
license = "Apache-2.0"
description = "Rust agent for Keylime"
repository = "https://github.com/keylime/rust-keylime"
[dependencies]
actix-web = "3"
base64 = "0.12"
compress-tools = "0.11.2"
flate2 = "1.0.4"
futures = "0.3.6"
hex = "0.3.2"
json = "0.12.4"
libc = "0.2.43"
log = "0.4"
openssl = "0.10.15"
pretty_env_logger = "0.2.0"
reqwest = {version = "0.10.8", features = ["json"]}
rust-ini = "0.12.1"
rustc-serialize = "0.3.24"
serde = "1.0.80"
serde_derive = "1.0.80"
serde_json = { version = "1.0", features = ["raw_value"] }
tempfile = "3.0.4"
tokio = {version = "0.2", features = ["full"]}
tokio-io = "0.1"
#tss-esapi = "5.0"
tss-esapi = { git = "https://github.com/puiterwijk/rust-tss-esapi.git", branch = "keylime" }
thiserror = "1.0"
zmq = "0.9.2"
uuid = {version = "0.8", features = ["v4"]}
wiremock = "0.5"
[features]
# this should change to dev-dependencies when we have integration testing
testing = []