-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathCargo.toml
41 lines (40 loc) · 1019 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
37
38
39
40
41
[workspace]
members = ["apps/backend", "libs/config", "libs/database", "libs/rs-utils"]
resolver = "2"
[workspace.dependencies]
anyhow = "=1.0.82"
async-graphql = { version = "=7.0.5", features = [
"chrono",
"decimal",
"log",
"tracing",
] }
chrono = "=0.4.38"
nanoid = "=0.4.0"
schematic = { version = "=0.16.4", features = [
"config",
"json",
"schema",
"toml",
"renderer_typescript",
"type_chrono",
"type_rust_decimal",
"url",
"renderer_template",
"yaml",
], default-features = false }
sea-orm = { version = "=1.0.0-rc.5", features = [
"debug-print",
"postgres-array",
"macros",
"runtime-tokio-rustls",
"sqlx-postgres",
"with-chrono",
"with-json",
"with-rust_decimal",
], default-features = false }
sea-orm-migration = "=1.0.0-rc.5"
serde = { version = "=1.0.202", features = ["derive"] }
serde_json = "=1.0.117"
strum = { version = "=0.26.2", features = ["derive"] }
tracing = { version = "=0.1.40", features = ["attributes"] }