-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (34 loc) · 911 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
42
43
[package]
name = "todo-app"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "entity", "migration"]
[dependencies]
async-trait = { version = "0.1" }
rust-argon2 = "1.0"
anyhow = "1.0"
entity = { path = "entity" }
migration = { path = "migration" }
[dependencies.rocket]
version = "0.5.0"
features = ["json", "secrets"]
[dependencies.rocket_dyn_templates]
version = "0.1.0"
features = ["tera"]
# [dependencies.sqlx]
# version = "0.7.0"
# features = ["runtime-tokio", "tls-rustls", "macros", "migrate", "postgres"]
# [dependencies.rocket_db_pools]
# version = "0.1.0"
# features = ["sqlx_postgres"]
[dependencies.sea-orm-rocket]
git = "https://github.com/SeaQL/sea-orm"
[dependencies.sea-orm]
version = "^0.8.0"
features = [
"runtime-tokio-native-tls",
"sqlx-postgres",
"macros"
]