-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 927 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
[package]
name = "heimdall"
version = "0.1.7"
authors = ["Michael Craggs <m.e.craggs@gmail.com>"]
edition = "2018"
description = "Https to Http reverse proxy based on hyper"
tags = ["http", "https", "reverse proxy", "async/await", "hyper", "tokio"]
license = "MIT"
[dependencies]
clap = "2.33"
env_logger = "0.7"
failure = "0.1"
futures = { version = "0.3" }
futures-util = { version = "0.3" }
hyper = { version = "0.13", features = ["stream"] }
hyper-rustls = "0.19"
lazy_static = "1.4"
log = "0.4"
path-tree = "0.1"
rustls = "0.16"
serde = { version = "1.0", features = ["derive"] }
toml = "0.5"
tokio = { version = "0.2", features = ["full"] }
tokio-rustls = "0.12"
unicase = "2.5"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
heimdall = { path = "/usr/bin/heimdall" }
[package.metadata.rpm.files]
"heimdall.service" = { path = "/usr/lib/systemd/system/heimdall.service" }