-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (46 loc) · 1.7 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
[workspace]
members = ["crates/*"]
[workspace.package]
version = "0.0.0"
authors = ["tuguzT <timurka.tugushev@gmail.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/tuguzT/flexible-project"
[workspace.dependencies]
# local crates (domain and data layers, various helpers, utilities, etc.)
fp-core = { package = "flexible-project-core", path = "crates/flexible-project-core" }
fp-filter = { package = "flexible-project-filter", path = "crates/flexible-project-filter" }
fp-user-domain = { package = "flexible-project-user-domain", path = "crates/flexible-project-user-domain" }
fp-user-data = { package = "flexible-project-user-data", path = "crates/flexible-project-user-data" }
fp-workspace-domain = { package = "flexible-project-workspace-domain", path = "crates/flexible-project-workspace-domain" }
fp-workspace-data = { package = "flexible-project-workspace-data", path = "crates/flexible-project-workspace-data" }
# external crates (macros, databases, serialization, etc.)
typed-builder = "0.14.0"
derive_more = "0.99.17"
auto_impl = "1.1.0"
async-trait = "0.1.68"
futures = "0.3.28"
fancy-regex = "0.11.0"
once_cell = "1.17.1"
email_address = { version = "0.2.4", default-features = false }
url = "2.3.1"
indexmap = "1.9.3"
serde = "1.0.163"
serde_with = "3.0.0"
serde_json = "1.0.96"
mongodb = "2.5.0"
chrono = "0.4.24"
axum = "0.6.18"
tower-http = "0.4.0"
tokio = "1.28.1"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
async-graphql = "5.0.8"
async-graphql-axum = "5.0.8"
anyhow = "1.0.71"
lapin = { version = "2.1.1", default-features = false }
tokio-executor-trait = "2.1.1"
tokio-reactor-trait = "1.1.0"
dotenv = "0.15.0"
# crates used for testing (clients, etc.)
reqwest = "0.11.18"