-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
64 lines (57 loc) · 2.32 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
[workspace.package]
authors = ["Procivis"]
edition = "2021"
license = "Apache-2.0"
version = "0.1.0"
[workspace]
members = [
"lib/one-core",
"lib/one-crypto",
"lib/one-dev-services",
"lib/shared-types",
"lib/sql-data-provider",
"platforms/uniffi",
"platforms/uniffi-bindgen",
"apps/core-server",
"apps/migration",
"examples",
]
resolver = "2"
[workspace.dependencies]
anyhow = { version = "1.0" }
autometrics = { version = "2.0", features = ["prometheus-0_13"] }
axum = { version = "0.7", features = ["macros"] }
ct-codecs = { version = "1.1" }
futures = { version = "0.3" }
hex = { version = "0.4", features = ["serde"] }
mockall = { version = "0.13" }
one-dto-mapper = { version = "0.1" }
rand = { version = "0.8" }
reqwest = { version = "0.12", default-features = false, features = ["native-tls-vendored", "json"] }
sea-orm = { version = "0.12", default-features = false }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
serde_qs = { version = "0.13" }
serde_urlencoded = { version = "0.7" }
serde_with = { version = "3.8", features = ["json", "time_0_3"] }
shadow-rs = { version = "0.35" }
strum = { version = "0.26", features = ["derive"] }
tempfile = { version = "3.10" }
thiserror = { version = "1.0" }
time = { version = "0.3", features = ["macros", "serde"] }
tokio = { version = "1.38" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json"] }
uniffi = { version = "0.28", features = ["cli"] }
url = { version = "2.5", features = ["serde"] }
urlencoding = { version = "2.1" }
utoipa = { version = "5.1", default-features = false, features = ["macros"] }
uuid = { version = "1.11", features = ["v4", "serde"] }
validator = { version = "0.18", features = ["derive"] }
wiremock = { version = "0.6" }
zeroize = { version = "1.8" }
[workspace.lints.clippy]
dbg_macro = "warn"
redundant_clone = "warn"
[patch.crates-io]
json-ld = { git = "https://github.com/strozynskiw/json-ld-rustls", rev = "cfab4c341b4c2514aa3c5799a0494c5b399692a6" }