-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 959 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
44
[package]
name = "aii_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"crates/token",
"crates/database",
"crates/utilities",
"crates/wechat"
]
[dependencies]
rc-token = { path = "./crates/token" }
rc-database = { path = "./crates/database" }
rc-utilities = { path = "./crates/utilities" }
rc-wechat = { path = "./crates/wechat" }
serde_json = "1.0.73"
serde = { version = "1.0.132", features = ["derive"] }
tokio = { features = ["macros", "rt-multi-thread"] }
poem = { version = "1.3.51", features = [
"rustls",
"test",
"anyhow",
] }
poem-openapi = { version = "2.0.23", features = [
"rapidoc",
"swagger-ui",
"redoc",
"chrono",
"email",
"static-files",
] }
sqlx = { version = "0.6.3", features = [
"mysql",
"runtime-tokio-rustls",
"chrono",
"json",
] }
dotenvy = "0.15.7"