-
Notifications
You must be signed in to change notification settings - Fork 33
/
Cargo.toml
50 lines (44 loc) · 1.18 KB
/
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
41
42
43
44
45
46
47
48
49
50
[package]
name = "tuf"
version = "0.1.6"
authors = [ "heartsucker <[email protected]>" ]
description = "Library for The Update Framework (TUF)"
homepage = "https://github.com/heartsucker/rust-tuf"
repository = "https://github.com/heartsucker/rust-tuf"
documentation = "https://docs.rs/tuf"
readme = "README.md"
license = "MIT"
keywords = [ "security" ]
categories = [ "cryptography" ]
[badges]
travis-ci = { repository = "heartsucker/rust-tuf", branch = "master" }
appveyor = { repository = "heartsucker/rust-tuf", branch = "master", service = "github" }
codecov = { repository = "heartsucker/rust-tuf", branch = "master", service = "github" }
[lib]
name = "tuf"
path = "./src/lib.rs"
[[bin]]
name = "tuf"
path = "./src/main.rs"
doc = false
required-features = [ "cli" ]
[features]
cli = [ "clap" ]
[dependencies]
chrono = { version = "0.3.1", features = [ "serde" ] }
clap = { version = "2.23", optional = true }
data-encoding = "2.0.0-rc.1"
env_logger = "0.4.3"
hyper = "0.10.10"
itoa = "0.3"
log = "0.3"
pem = "0.4"
ring = "0.9.4"
serde = "1"
serde_derive = "1"
serde_json = "1"
url = "1.4"
untrusted = "0.5"
uuid = { version = "0.5", features = [ "v4" ] }
[dev-dependencies]
tempdir = "0.3"