-
Notifications
You must be signed in to change notification settings - Fork 35
/
Cargo.toml
57 lines (53 loc) · 1.56 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
[package]
name = "raider-server"
version = "1.2.3"
description = "Affiliates dashboard. Used by affiliates to generate tracking codes and review their balance."
readme = "README.md"
license = "MPL-2.0"
homepage = "https://github.com/valeriansaliou/raider"
repository = "https://github.com/valeriansaliou/raider.git"
keywords = ["affiliates", "dashboard", "sales", "tracker"]
categories = ["web-programming"]
authors = ["Valerian Saliou <valerian@valeriansaliou.name>"]
exclude = ["dev/*"]
[[bin]]
name = "raider"
path = "src/main.rs"
doc = false
[dependencies]
log = "0.3"
clap = { version = "2.29", default-features = false }
lazy_static = "1.3"
sha2 = "0.7"
time = "0.1"
rand = "0.4"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
base64 = "0.6"
validate = "0.6"
url_serde = { version = "0.2", default-features = false }
chrono = { version = "0.4", default-features = false }
native-tls = { version = "0.2", features = ["vendored"] }
openssl-probe = "0.1"
lettre = { version = "0.9", features = ["smtp-transport"] }
lettre_email = "0.9"
rocket = { version = "0.4", features = ["private-cookies"] }
rocket_contrib = { version = "0.4", features = ["tera_templates"] }
diesel = { version = "1.1", features = ["mysql", "chrono", "numeric"] }
r2d2 = "0.8"
r2d2-diesel = "1.0"
reqwest = { version = "0.10", features = ["native-tls-vendored", "blocking", "gzip", "json"] }
bigdecimal = "0.1"
num-traits = "0.1"
separator = "0.3"
iso_country = "0.1"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
[profile.release]
opt-level = "s"
lto = true
debug = false
debug-assertions = false