summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: c114ff5f4131e18433215f7ee59d5e84db09155d (plain)
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
[package]
name = "wrapper"
version = "0.1.0"
edition = "2021"

[dependencies]
# Blazingly fast runtime
tokio = { version = "1", features = ["full"] }
tracing-subscriber = "0.3.16"
tracing = "0.1.37"

# Allow recursion inside tokio async
async-recursion = "1"

# DNS Caching Layer
moka = { version = "0.10.0", features = ["future"] }

# Mongodb
mongodb = { version = "2.4", features = ["tokio-sync"] }
futures = "0.3.26"

# Convert values to json for Mongodb
serde = { version = "1.0", features = ["derive"] }

# Reading env vars from .env
dotenv = "0.15.0"

# For the meme records
rand = "0.8.5"

# For the http web frontend
axum = "0.6.4"
tower-http = { version = "0.4.0", features = ["fs"] }
tower-cookies = "0.9.0"
tower = "0.4.13"
bytes = "1.4.0"
serde_json = "1"