-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 945 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
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
authors = ["mmacedoeu <contato@mmacedo.eu.org>"]
name = "swapi"
version = "0.1.0"
[dependencies]
actix = "0.5"
app_dirs = "1.2.1"
bytes = "0.4"
crossbeam-channel = "0.1"
derive-error-chain = "0.11"
env_logger = "0.5"
error-chain = "0.11"
failure = "0.1"
futures = "0.1"
log = "0.4"
lru_time_cache = "0.8"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
flame = { version = "0.2.2", optional = true }
flamer = { version = "^0.2.1", optional = true }
[dependencies.actix-web]
default_features = false
features = ["tls", "flate2-rust", "brotli"]
version = "0.6"
[dependencies.clap]
features = ["yaml"]
version = "2.31"
[dependencies.mentat]
git = "https://github.com/mozilla/mentat"
[dependencies.pikkr]
git = "https://github.com/pikkr/pikkr.git"
[dependencies.uuid]
features = ["v4", "serde"]
version = "0.5"
[features]
default = []
flame_it = ["flame", "flamer"]
[profile.release]
lto = true
opt-level = 3
codegen-units = 1