-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 1.23 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
[profile.release]
strip = true
lto = true
[workspace]
members = [
"iam",
"iam-common",
"iam-entity",
"iam-migration",
"iam-macros",
"iam-cli",
"libiam",
]
default-members = [
"iam",
"iam-migration",
"iam-cli",
]
resolver = "2"
[workspace.package]
license-file = "./LICENSE"
[workspace.dependencies]
anyhow = "1.0.86"
async-trait = "0.1.81"
axum = { version = "0.7.5", default-features = false, features = ["http2", "json", "macros", "tokio", "tracing"] }
base64 = "0.22.1"
chrono = { version = "0.4.38", default-features = false }
dotenvy = "0.15.7"
iam-common = { path = "./iam-common" }
iam-entity = { path = "./iam-entity" }
iam-macros = { path = "./iam-macros" }
jsonwebtoken = "9.3.0"
mime = "0.3.17"
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
sea-orm = { version = "1.0.0", default-features = false, features = ["macros", "runtime-actix-rustls", "sqlx-mysql", "with-chrono"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "signal"] }
tracing = { version = "0.1.40", default-features = false }
uuid = { version = "1.10.0", default-features = false, features = ["v4"] }