-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathCargo.toml
43 lines (39 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
[package]
name = "indy-vdr-proxy"
version = "0.1.6"
authors = [
"Hyperledger Indy Contributors <[email protected]>",
]
description = "A basic proxy server exposing indy-vdr functionality over an HTTP interface"
edition = "2021"
rust-version = "1.63"
license = "Apache-2.0"
[features]
fetch = ["hyper/client", "hyper-tls"]
zmq_vendored = ["indy-vdr/zmq_vendored"]
tls = ["rustls-pemfile", "tokio-rustls", "hyper/stream"]
default = ["fetch", "zmq_vendored"]
[dependencies]
clap = "~4.2"
env_logger = "0.10"
futures-executor = "0.3"
futures-util = "0.3"
indy-vdr = { path = "../libindy_vdr", default-features = false, features = [
"log",
] }
git2 = "0.18"
hyper = { version = "0.14", features = ["http1", "http2", "server"] }
hyper-tls = { version = "0.6", optional = true }
log = "0.4.8"
percent-encoding = "2"
regex = "1.5.4"
rustls-pemfile = { version = "1.0.3", optional = true }
serde_json = "1.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "signal"] }
tokio-rustls = { version = "0.24", optional = true }
url = "2.2.2"
[target.'cfg(unix)'.dependencies]
hyper-unix-connector = "0.2"
[[bin]]
name = "indy-vdr-proxy"
path = "src/main.rs"