-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
55 lines (51 loc) · 1.14 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
[package]
name = "rust-app"
version = "0.1.0"
authors = ["chris"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.10.0"
actix-http = "2.0.0"
actix-rt = "1.1.1"
actix-service = "1"
actix-web = "3.0.2"
bcrypt = "0.8"
chrono = {version = "0", features = ["serde"]}
clap = "2.33.0"
derive_more = "0"
dotenv = "0"
fancy-regex = "0.3.5"
futures = "0.3.5"
jsonwebtoken = "7"
lazy_static = "1"
lettre = "0.10.0-alpha.2"
num_cpus="1.13"
regex = "1"
serde = {version = "1", features = ["derive"] }
serde_json = "1"
sqlx = {version = "0.4.0-beta.1", features = [ "json", "postgres","chrono","macros","offline"]}
time = "0.2.16"
typed-html={ git = "https://github.com/bodil/typed-html#4c13ecca" }
validator = "0.10"
validator_derive = "0.10"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 16
rpath = false
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = 'unwind'
incremental = false
codegen-units = 1
rpath = false