-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
52 lines (39 loc) · 1.36 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
[package]
name = "nucleoid-backend"
version = "0.1.0"
authors = ["Gegy <[email protected]>"]
edition = "2018"
# Needed for docker.
[[bin]]
name = "nucleoid-backend"
path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
warp = "0.3"
reqwest = { version = "0.11", features = ["rustls-tls", "json"], default-features = false }
lru = "0.9"
futures = "0.3"
deadpool-postgres = "0.10"
tokio-postgres = { version = "0.7", features = ["with-uuid-1"] }
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.8"
byteorder = "1"
bytes = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["serde"] }
regex = "1.7"
lazy_static = "1.4" # todo: replace with once_cell/the stdlib implementation
serenity = { version = "0.11", default-features = false, features = ["builder", "cache", "client", "gateway", "model", "http", "rustls_backend"] }
async-trait = "0.1"
xtra = "0.5.2"
thiserror = "1"
log = "0.4" # todo: replace with tracing
env_logger = "0.10"
walkdir = "2"
nucleoid-leaderboards = { git = "https://github.com/NucleoidMC/nucleoid-leaderboards.git" }
# The latest release on crates.io doesn't have support for serialising DateTime
[dependencies.clickhouse-rs]
git = "https://github.com/suharev7/clickhouse-rs"
branch = "async-await"