-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (32 loc) · 893 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
[package]
name = "yac"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "yac"
path = "bin/yac.rs"
# [[bin]]
# name = "clustered"
# path = "bin/clustered.rs"
# [lib]
# name = "websocket"
# path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-util = "0.3.14"
tokio-tungstenite = "0.15"
pretty_env_logger = "0.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
jsonwebtoken = "7"
log = "0.4"
tokio = { version = "1", features = ["full"] }
warp = "0.3"
futures = "0.3.17"
async-trait = "0.1"
hyperid = { version = "2", features = ["url_safe"] }
redis = { version = "0.21", features = ["aio", "tokio-comp"] }
envy = "0.4"
[target.'cfg(unix)'.dev-dependencies]
nix = "0.23"