-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (48 loc) · 1.12 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
58
59
60
61
[package]
name = "actix-example"
version = "0.1.0"
authors = ["Federico Garcia Ronca <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#config
gumdrop = "0.8.0"
lazy_static = "1.4.0"
version = "3.0.0"
#serialization
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
##db
cdrs = "3.0.0-beta.2"
cdrs_helpers_derive = "0.3.3"
uuid = {version = "0.8", features = ["serde"]}
time = "0.2"
##log
env_logger = "0.7.1"
tracing = {version = "0.1.19", features = ["log"]}
tracing-log = {version = "0.1.1", features = ["env_logger"]}
tracing-subscriber = "0.2.11"
tracing-futures = "0.2.4"
##http/https
actix-http = "2.0.0"
actix-web = "3.0.0"
actix-rt = "1.1.1"
failure = "0.1.8"
dotenv = "0.15.0"
##network
dns-lookup = "1.0.3"
##date && time
chrono = {version = "0.4.13", features = ["serde"]}
##logs
hostname = "0.3.1"
#util
fomat-macros = "0.3.1"
itertools = "0.9.0"
[dependencies.hocon]
version = "0.3.4"
default-features = false
features = ["serde-support"]
[dependencies.async-std]
version = "1.6.3"
features = ["tokio02","std"]