-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (57 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# #* create entity *#
# [package]
# name = "dashi-server"
# version = "0.0.1"
# edition = "2021"
# [dependencies]
# #sea-orm
# migration = { path = "migration" }
# sea-orm = { version = "1.0.0", features = [ "sqlx-postgres", "runtime-tokio-native-tls", "macros" ] }
#* create migration, run init and presentation *#
[workspace]
resolver = "2"
members = [
"crates/healthcheck",
"crates/ping",
"crates/presentation",
"crates/application",
"crates/domain",
"crates/infrastructure",
"migration",
"entity",
]
[workspace.package]
name = "dashi-server"
version = "0.0.1"
edition = "2021"
[workspace.dependencies]
# axum
async-std = "1.13.0"
tokio = { version = "1.39.2", features = ["full"] }
axum = {version = "0.7.5", features = ["macros"] }
tower-http = { version = "0.5.2", features = ["cors"] }
utoipa = { version = "4.2.3", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] }
# .env
dotenvy = "0.15.7"
once_cell = "1.19.0"
# seaorm
migration = { path = "migration" }
entity = { path = "entity" }
sea-orm = { version = "1.0.0", features = [ "sqlx-postgres", "runtime-tokio-native-tls", "macros" ] }
chrono = "0.4.39"
serde_json = "1.0.127"
# meilisearch
meilisearch-sdk = "0.27.1"
serde = { version="1.0.209", features=["derive"] }
#neo4j
neo4rs = "0.8.0"
# cloudflare r2
cf-r2-sdk = "3.0.0"
# error
thiserror = "2.0.11"
#other
radix_fmt = "1.0.0"
# logging
tracing = "0.1.41"
tracing-subscriber = "0.3.19"