-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 779 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 779 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
[workspace]
members = ["app", "entity", "migration", "dev-tools"]
default-members = ["app"]
resolver = "3"
[workspace.package]
authors = ["{{author_name}}"]
license = "MIT"
repository = "https://github.com/{{authors}}/{{project-name}}"
[workspace.dependencies]
sea-orm = { version = "1.1.19", features = [
"macros",
"debug-print",
"with-chrono",
"with-uuid",
"runtime-tokio-rustls",
"sqlx-postgres",
"with-json",
"with-time",
] }
serde = { version = "1.0.219", features = ["derive"] }
strum = { version = "0.27.2", features = ["derive"] }
num_enum = "0.7.5"
schemars = { version = "0.9.0", features = ["derive", "chrono04", "uuid1"] }
sonyflake = "0.4.0"
harsh = "0.2.2"
sqids = "0.4.2"
validator = { version = "0.20.0", features = ["derive"] }