-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 902 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
[package]
name = "twitch-stats-server"
version = "0.1.0"
authors = ["Eunchul Song <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dotenv = "0.14.1"
thiserror = "1.0"
env_logger = "0.6"
lazy_static = "1.3.0"
futures = "0.3"
actix-threadpool = "0.2.0"
actix-web = { version = "2.0.0", features = ["openssl"] }
openssl = "0.10"
actix-rt = "1.0.0"
actix-files = "0.2.1"
actix-cors = "0.2.0"
chrono = { version = "0.4.6", features = ["serde"] }
diesel = { version = "1.4.3", features = ["postgres","uuidv07", "r2d2", "chrono"] }
r2d2 = "0.8"
serde = "1.0"
serde_qs = "0.5"
serde_derive = "1.0"
serde_json = "1.0"
serde_cbor = "0.10"
uuid = { version = "0.5", features = ["serde", "v4"] }
bytes = "0.4"
csv = "1.0"
blake2 = "0.8"
sled = "0.31"
zerocopy = "0.3"
byteorder = "1.3.4"
async-std = "1.5"