-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
64 lines (56 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "cocaine-http-proxy"
version = "0.3.19"
authors = ["Evgeny Safronov <[email protected]>"]
license = "MIT"
description = "HTTP proxy for Cocaine APE Cloud"
homepage = "https://github.com/cocaine/cocaine-http-proxy"
repository = "https://github.com/cocaine/cocaine-http-proxy"
[dependencies]
clap = "2"
jsonrpc-core = "7"
num_cpus = "1"
serde = "1"
serde_derive = "1"
serde_json = "1"
serde_yaml = "0.7"
libc = "0.2"
net2 = "0.2"
rand = "0.3"
time = "0.1"
futures = "0.1"
itertools = "0.5"
uuid = { version = "0.4", features = ["v4"] }
tokio-core = "0.1"
tokio-service = "0.1"
tokio-uds = "0.1"
# Temporary until zero-sized-chunk-problem lands in crates.io.
hyper = { git = "https://github.com/hyperium/hyper", rev = "fc5b9cce3176776e4c916cd1b907b1649a538f00" }
regex = "0.2"
# Temporary for deep debugging.
#slog = "1.4"
#slog-term = "1.3"
#slog-stdlog = "1.1"
#slog-envlogger = "0.5"
cocaine = "0.9.1"
rmp-serde = "0.13.3"
# Hack for backward-compatibility with Cocaine on older MessagePack.
byteorder = "1"
rmp = "0.8"
[profile.dev]
panic = "abort"
[profile.release]
debug = true
panic = "abort"
[package.metadata.deb]
maintainer = "Evgeny Safronov <[email protected]>"
copyright = "2017, Evgeny Safronov <[email protected]>"
license_file = ["LICENSE", "4"]
extended_description = """An entry point for the Cocaine APE Cloud
Terminates HTTP trafic, allowing to call Cocaine applications and services."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/cocaine-http-proxy", "usr/bin/", "755"],
]