-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 910 Bytes
/
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
[package]
name = "data_seeker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# path = "src/lib.rs"
[[bin]]
name = "data_seeker"
# path = "src/main.rs"
[dependencies]
async-graphql = "5.0.4"
sea-orm = { version = "0.10.2", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
"debug-print",
"mock",
] }
futures = "0.3.25"
config = "0.13.2"
serde = { version = "1.0.147", features = ["derive"] }
lazy_static = "1.4.0"
axum = { version = "0.6.1", features = ["headers"] }
tokio = { version = "1", features = ["full"] }
hyper = { version = "0.14", features = ["full"] }
tower-http = { version = "0.3", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
dotenvy = "0.15.6"
validator = { version = "0.16.0", features = ["derive"] }
thiserror = "1.0.38"
async-trait = "0.1.61"