-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
97 lines (83 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[workspace]
resolver = "2"
members = [
"crates/shine-test-macros",
"crates/shine-test",
"crates/shine-core-macros",
"crates/shine-core",
"services/identity",
"services/builder",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
[workspace.dependencies]
log = "0.4"
env_logger = "0.11"
color-backtrace = "0.6"
thiserror = "2.0"
anyhow = "1.0"
config = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
time = "0.3"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
url = "2.3"
base64 = "0.22"
hex = "0.4"
bytes = "1.1"
ring = "0.17"
rand = "0.8"
bcrypt = "0.16"
regex = "1.10"
############################# RUNTIME #############################
pin-project = "1.1"
futures = "0.3"
futures-channel = "0.3"
async-trait = "0.1"
tokio = { version = "1.43", features = ["rt-multi-thread"] }
############################# TRACING #############################
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = "0.3"
############################# DB #############################
bb8 = "0.9"
bb8-redis = "0.20"
redis = { version = "0.28.0", features = ["tokio-comp", "tokio-rustls-comp"] }
bb8-postgres = "0.9"
tokio-postgres = "0.7"
tokio-postgres-rustls = "0.13"
postgres-from-row = "0.5"
refinery = { version = "0.8", features = ["tokio-postgres"] }
############################# AZURE #############################
azure_core = { version = "0.21" }
azure_identity = { version = "0.21" }
############################# NET #############################
rustls = "0.23"
tokio-rustls = "0.26"
reqwest = { version = "0.12", features = ["json"] }
############################# WEB #############################
tower = "0.5"
tower-http = "0.6"
axum = "0.8"
axum-extra = { version = "0.10" }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tera = "1.20"
validator = { version = "0.20", features = ["derive"] }
utoipa = { version = "5.2", features = [
"axum_extras",
"uuid",
"chrono",
"debug",
] }
utoipa-axum = "0.2"
utoipa-swagger-ui = { version = "9.0", features = ["axum"] }
############################# WASM #############################
wasm-logger = "0.2"
wasm-bindgen-test = "0.3"
############################# MEMBERS #############################
shine-test-macros = { path = "./crates/shine-test-macros" }
shine-test = { path = "./crates/shine-test" }
shine-core-macros = { path = "./crates/shine-core-macros" }
shine-core = { path = "./crates/shine-core" }