-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
executable file
·47 lines (39 loc) · 1.27 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
[workspace]
members = [".", "mtapp", "mtapp-auth", "mtapp-scope", "mtapp-user", "mtapp-grant", "mtapp-session"]
resolver = "2"
[package]
authors = ["Pouya M. B. <[email protected]>"]
name = "myapp"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = "0.6"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
utoipa-swagger-ui = { version = "3", features = ["axum"] }
serde-querystring-axum = "0.2"
dotenvy = "0.15"
log = "0.4"
env_logger = "0.10"
clap = "4"
simplelog = "0.12.0"
basteh = "=0.4.0-alpha.5"
basteh-memory = "=0.4.0-alpha.5"
sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres", "offline"] }
mtapp = "0"
mtapp-auth = "0.1.0"
mtapp-scope = "0.1.0"
mtapp-user = "0.1.0"
mtapp-grant = "0.1.0"
mtapp-session = "0.1.0"
[patch.crates-io]
mtapp = { path = "./mtapp/" }
mtapp-auth = { path = "./mtapp-auth/" }
mtapp-scope = { path = "./mtapp-scope/" }
mtapp-user = { path = "./mtapp-user/" }
mtapp-grant = { path = "./mtapp-grant/" }
mtapp-session = { path = "./mtapp-session/" }
smig-lib = { path = "../../rust/smig/lib" }
smig-macros = { path = "../../rust/smig/macros" }
schemer = { git = "https://github.com/pooyamb/schemer.git", branch = "async" }
seaqs = { git = "https://github.com/pooyamb/seaqs.git", branch = "main" }