forked from awslabs/tough
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (37 loc) · 1.11 KB
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
[package]
name = "tough"
version = "0.12.2"
description = "The Update Framework (TUF) repository client"
authors = ["iliana destroyer of worlds <iweller@amazon.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/awslabs/tough"
keywords = ["tuf", "update", "repository"]
edition = "2018"
[dependencies]
chrono = { version = "0.4.11", features = ["serde"] }
dyn-clone = "1.0.5"
globset = { version = "0.4.8" }
hex = "0.4.2"
log = "0.4.8"
olpc-cjson = { version = "0.1.0", path = "../olpc-cjson" }
path-absolutize = "3"
pem = "1.1.1"
percent-encoding = "2"
reqwest = { version = "0.11.1", optional = true, default-features = false, features = ["blocking"] }
ring = { version = "0.16.16", features = ["std"] }
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.63"
serde_plain = "1.0.0"
snafu = "0.7"
tempfile = "3.3.0"
untrusted = "0.7.0"
url = "2.1.0"
walkdir = "2.3.2"
[dev-dependencies]
hex-literal = "0.3.4"
httptest = "0.15"
maplit = "1.0.1"
[features]
http = ["reqwest"]
# The `integ` feature enables integration tests. These tests require docker to be running on the host.
integ = []