-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (29 loc) · 967 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
[package]
name = "server"
version = "1.0.0"
authors = ["Jachdich <jamesedkitching@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.0.0", features = ["rt-multi-thread", "macros"] }
tokio-util = { version = "0.6.3", features = ["full"] }
tokio-stream = { version = "0.1" }
tokio-tungstenite = "*"
tokio-native-tls = "*"
native-tls = "0.2.11"
# tracing = "0.1"
# tracing-subscriber = { version = "0.2.7", default-features = false, features = ["fmt", "ansi", "env-filter", "chrono", "tracing-log"] }
bytes = "1.0.0"
futures = { version = "0.3.0", features = ["thread-pool"]}
rand = "*"
base64 = "*"
diesel = { version = "*", features = ["sqlite", "numeric"]}
chrono = "*"
lazy_static = "*"
serde = { version = "1.0", features = ["derive"] }
argon2 = "*"
serde_json = "1.0"
enum_dispatch = "0.3.8"
log = "0.4.18"
env_logger = "0.10.0"
anyhow = "1.0.71"