-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (45 loc) · 1.48 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
[package]
name = "tars"
version = "0.1.0"
edition = "2021"
authors = ["sargon64 <niko@mail.velvet.moe>", "skkeye <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# actix-cors = "0.6.4"
# actix-web = "4.3.1"
# actix-web-actors = "4.2.0"
anyhow = "1.0.74"
async-graphql = { version = "7.0.2", features = ["uuid", "chrono", "playground", "tracing"] }
async-graphql-poem = "7.0.2"
async-stream = "0.3.5"
async-trait = "0.1.77"
carboxyl = "0.2.2"
chrono = "0.4.26"
crossbeam-channel = "0.5.8"
dotenv = "0.15.0"
futures = "0.3.28"
futures-util = "0.3.28"
# juniper = "0.15.11"
# juniper_actix = { version = "0.4.0", features = ["subscriptions"] }
# juniper_graphql_ws = "0.3.0"
# juniper_subscriptions = "0.16.0"
# juniper_warp = { version = "0.7.0", features = ["subscriptions"] }
lazy_static = "1.4.0"
# log = "0.4.20"
poem = "2.0.0"
prost = "0.11.9"
prost-types = "0.11.9"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
tap = "1.0.1"
text-to-ascii-art = "0.1.9"
tokio = { version = "1.31.0", features = ["full"] }
tokio-tungstenite = { version = "0.20.0", features = [
"rustls-tls-native-roots"
] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-subscriber = { version = "0.3.18", features = ["chrono", "env-filter"] }
uuid = { version = "1.7", features = ["serde", "v4"] }
# warp = { version = "0.3.5", features = ["tokio-rustls"] }
[build-dependencies]
prost-build = "0.11.9"