-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (40 loc) · 1 KB
/
Cargo.toml
File metadata and controls
42 lines (40 loc) · 1 KB
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
[package]
name = "star-platinum"
version = "0.1.0"
edition = "2024"
[workspace]
members = ["migration", "entity"]
[dependencies]
axum = { version = "0.8", features = ["macros"] }
dotenv = "0.15.0"
serde_json = "1.0.134"
tokio = { version = "1.42.0", features = ["full"] }
tower = "0.5.2"
sqlx = { version = "0.8.2", features = ["mysql", "runtime-tokio"] }
serde = "1.0.217"
anyhow = "1.0.95"
async-graphql = { version = "7.0.13", features = ["dynamic-schema"] }
async-graphql-axum = "7.0.13"
tokio-stream = "0.1.17"
futures-util = "0.3.31"
async-stream = "0.3.6"
futures-timer = "3.0.3"
slab = "0.4.9"
once_cell = "1.20.2"
futures-channel = "0.3.31"
sea-orm = { version = "1.1.0", features = [
"sqlx-mysql",
"runtime-tokio-rustls",
"macros",
] }
async-std = "1.13.2"
sea-orm-pro = "0.1.0"
tower-http = { version = "0.6.6", features = ["fs"] }
tower-cookies = "0.11.0"
seaography = { version = "1.1", features = [
"with-decimal",
"with-chrono",
"with-uuid",
"field-snake-case",
] }
entity = { path = "./entity/" }