-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 793 Bytes
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
[package]
name = "grease"
version = "0.1.0"
authors = ["Sam Mohr <sam.mohr@protonmail.com>"]
edition = "2021"
[[bin]]
name = "grease"
path = "src/main.rs"
[dependencies]
anyhow = "1"
askama = "0.11"
axum = { version = "0.5", features = ["headers"] }
# TODO: use the dataloader?
async-graphql = "4"
async-trait = "0.1"
base64 = "0.10"
bcrypt = "0.12"
dotenv = "0.15"
mailgun_v3 = "0.13"
regex = "1"
serde = { version = "1", features = ["derive"] }
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"postgres",
"time",
"offline",
] }
thiserror = "1"
time = { version = "0.3", features = ["serde", "local-offset"] }
tokio = { version = "1", features = ["macros", "time"] }
tower-http = { version = "0.3", features = ["cors"] }
uuid = { version = "0.8", features = ["v4"] }