-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (38 loc) · 1.03 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
[workspace]
members = ["crates/*", "bin/*"]
resolver = "2"
[workspace.dependencies]
time = { version = "0.3.36", features = [
"serde",
"std",
"parsing",
"macros",
"formatting",
] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
sea-query = { version = "0.30.7", default-features = false, features = [
"derive",
"backend-mysql",
] }
r2d2 = "0.8.10"
mysql = { version = "25.0.1", default-features = false, features = ["minimal"] }
mysql_common = { version = "0.32.4", default-features = false, features = [
"time",
"derive",
"bigdecimal",
] }
log = { version = "0.4.22", features = ["std"] }
axum = { version = "0.7.5", default-features = false, features = [
"json",
"tokio",
"query",
"http1",
] }
tokio = { version = "1", default-features = false, features = [
"macros",
"rt-multi-thread",
] }
figment = { version = "0.10.19", default-feature = false, features = ["yaml"] }
async-graphql = { version = "7.0.7", features = ["time"] }
async-graphql-axum = "7.0.7"