-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (33 loc) · 1002 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
[package]
name = "cloudbanking"
version = "0.5.0"
authors = ["José Antonio Córdoba Gómez <[email protected]> @pepitoenpeligro"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
warp = "0.2"
parking_lot = "0.11.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0.59"
regex = "1.4.1"
tokio = { version = "0.3.6", features = ["macros", "full"] }
chrono = { version = "0.4.6", features = ["serde"] }
galvanic-assert = "0.8.7"
futures = "0.3.1"
actix-web = { version = "3.3.2"}
actix-cors = "0.5.3"
actix-session = "0.4.0"
actix = "0.10.0"
actix-service = "1.0.5"
actix-rt = "1.1.1"
# openssl = { version = "0.10", features = ["v110"] }
etcd-client = "0.5"
hyper = "0.13.9"
env_logger = "0.8.2"
log = { version = "0.4", features = ["std", "serde"] }
dotenv = "0.15.0"
[profile.dev]
debug = 0
# cargo +nightly build --release -Z config-profile
#[profile.release]
#opt-level = 1