-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (32 loc) · 1.04 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
[package]
name = "pg_graph"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["api", "tenant"]
[dependencies]
axum = { version = "0.7.5", features = ["ws"] }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros", "time", "signal"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.115"
async-trait = "0.1.79"
sea-orm = { version = "0.12.15", features = ["sqlx-postgres", "runtime-tokio-native-tls"] }
tower-http = { version = "0.5.2", features = ["cors", "request-id"] }
tokio-util = "0.7.11"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
futures = "0.3.30"
tower = "0.4.13"
bytes = "1.6.0"
uuid = { version = "1.8.0", features = ["v4", "fast-rng"] }
chrono = { version = "0.4.38", features = ["serde"] }
dotenvy = "0.15.7"
axum-server = "0.6.0"
anyhow = "1.0.86"
channel = { version = "1.9.0", package = "async-channel" }
once_cell = "1.19.0"
futures-util = "0.3.30"
tracing = "0.1.40"
envy = { version = "0.4.2" }
tenant = { path = "./tenant" }
lazy_static = "1.4.0"
regex = "1.10.5"