-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (52 loc) · 1.34 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
53
54
55
56
57
58
59
[package]
name = "au-health-backend"
version = "0.1.0"
authors = ["Matt Wilkinson <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
path = "src/lib.rs"
[[bin]]
path = "src/main.rs"
name = "au-health-backend"
[dependencies]
axum = {version = "0.3.1", features = ["headers"]}
async-graphql = {version = "2.11.1", features = ["chrono", "uuid"]}
slab = "0.4.4"
tokio = { version = "1.11.0", features = ["macros", "time", "rt-multi-thread"] }
uuid = {version = "0.8.2", features = ["serde","v4"]}
chrono = "0.4.19"
fake = "2.4.1"
serde = { version="1", features = ["derive"] }
serde-aux = "3.0.1"
config = "0.11.0"
tracing = "0.1.26"
hyper = "0.14.12"
argon2 = "0.3.1"
async-session = "3.0.0"
async-redis-session = "0.2.2"
headers = "0.3.4"
async-trait = "0.1.51"
http = "0.2.4"
async-graphql-axum = "2.11.1"
validator = "0.14.0"
unicode-segmentation = "1.8.0"
futures = "0.3.17"
dotenv = "0.15.0"
[dependencies.sqlx]
version = "0.5.7"
default-features = false
features = [
"offline",
"runtime-tokio-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
]
[dev-dependencies]
cynic = {version = "0.15.0", features = ["reqwest"]}
reqwest = {version = "0.11.4", features = ["json", "rustls-tls", "cookies"]}
regex = "1.5.4"
claim = "0.5.0"