-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·48 lines (43 loc) · 1.25 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
[package]
name = "lmm-stats"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "frontend"
[[bin]]
name = "backend"
[workspace]
resolver = "2"
members = [
"crates/features/tokens",
"crates/features/users",
"crates/features/systems",
"crates/features/clients",
"crates/features/events",
"crates/features/event_calls",
"crates/app/backend",
"crates/app/frontend",
"crates/api/common",
"crates/api/server",
]
[patch.crates-io]
abstract-db = { git = "http://github.com/andronix1/abstract-db" }
abstract-sqlx-bindings = { git = "http://github.com/andronix1/abstract-sqlx-bindings.git" }
# features
feature-tokens = { path = "crates/features/tokens" }
feature-users = { path = "crates/features/users" }
feature-systems = { path = "crates/features/systems" }
feature-clients = { path = "crates/features/clients" }
feature-events = { path = "crates/features/events" }
feature-event-calls = { path = "crates/features/event_calls" }
# api
api-common = { path = "crates/api/common" }
api-server = { path = "crates/api/server" }
# app
backend = { path = "crates/app/backend" }
frontend = { path = "crates/app/frontend" }
[dependencies]
anyhow = "1.0.86"
backend = "0.1.0"
frontend = "0.1.0"
tokio = { version = "1.38.0", features = ["full"] }