-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
54 lines (47 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
54
[package]
name = "duck"
version = "0.14.0"
authors = ["Patrik Svensson", "Gary McLean Hall"]
edition = "2018"
license = "MIT OR Apache-2.0"
[features]
docker = []
embedded-web = []
[[bin]]
name = "duck"
path = "src/main.rs"
[dependencies]
actix-rt = "1"
async-std = { version = "1", features = ["attributes"] }
failure = "0.1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
url = "2.1.0"
reqwest = { version = "0.9.22", default-features = false, features = [ "rustls-tls" ] }
waithandle = "0.4.0"
actix-web = "2"
actix-files = "0.2.1"
actix-cors = "0.2.0"
actix-web-static-files = "2.0.0"
structopt = "0.3.9"
log = "0.4"
chrono = "0.4.10"
regex = "1.3.3"
schemars = "0.8.3"
derive_builder = "0.10.0"
base64 = "0.13.0"
ctrlc = { version = "3.1.4", features = ["termination"] }
futures = "0.3.4"
simplelog = "0.10.0"
[target.'cfg(windows)'.dependencies]
windows-service = { git = "https://github.com/mullvad/windows-service-rs", rev="202d88bf438fdb870f4fc26e2031d36ab083fc42" }
[dev-dependencies]
test-case = "1.1.0"
[build-dependencies]
actix-web-static-files = "2.0.0"
[profile.release]
panic = 'abort'
lto = true
codegen-units = 1
incremental = false
opt-level = "z"