forked from in-toto/in-toto-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (49 loc) · 1.17 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
51
52
53
[package]
name = "in-toto"
edition = "2018"
version = "0.1.2"
authors = ["Santiago Torres-Arias <santiagotorres@purdue.edu>",
"Qijia 'Joy' Liu <joyliu.q@gmail.com>"]
description = "Library for in-toto"
homepage = "https://in-toto.io"
repository = "https://github.com/in-toto/in-toto-rs"
documentation = "https://docs.rs/in-toto"
readme = "README.md"
license = "MIT"
keywords = [ "security" ]
categories = [ "cryptography" ]
[lib]
name = "in_toto"
path = "./src/lib.rs"
[dependencies]
chrono = { version = "0.4", features = [ "serde" ] }
data-encoding = "2.0.0-rc.2"
derp = "0.0.14"
futures-executor = "0.3.1"
futures-io = "0.3.1"
futures-util = { version = "0.3.1", features = [ "compat", "io" ] }
http = "0.2"
hyper = { version = "0.14", default-features = false }
itoa = "0.4"
log = "0.4"
ring = { version = "0.16" }
parking_lot = "0.11"
percent-encoding = "2.1"
serde = "1"
serde_derive = "1"
serde_json = "1"
tempfile = "3"
untrusted = "0.7"
url = "2"
thiserror = "1.0"
walkdir = "2"
path-clean = "0.1.0"
rand = "0.8.4"
lazy_static = "1.4.0"
[dev-dependencies]
lazy_static = "1"
maplit = "1"
matches = "0.1.8"
pretty_assertions = "0.7"
[features]
default = ["hyper/default"]