-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
61 lines (59 loc) · 1.67 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
[workspace]
members = [
"monobase",
"monocore",
"monofs",
"monopacks",
"monoutils",
"monoutils-did",
"monoutils-store",
"monoutils-ucan",
]
resolver = "2"
[workspace.package]
authors = ["Stephen Akinyemi <appcypher@outlook.com>"]
repository = "https://github.com/appcypher/monocore"
version = "0.1.0"
license = "Apache-2.0"
edition = "2021"
[workspace.dependencies]
async-stream = "0.3"
async-trait = "0.1"
dirs = "5.0"
hex = "0.4"
libc = "0.2"
axum = "0.8"
bytes = "1.9"
libipld = "0.16"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structstruck = "0.4"
xattr = "1.3"
sha2 = "0.10"
thiserror = "2.0"
anyhow = "1.0"
futures = "0.3"
tokio = { version = "1.42", features = ["full"] }
tokio-util = { version = "0.7", features = ["io"] }
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = "0.3"
clap = { version = "4.5", features = ["color", "derive"] }
getset = "0.1"
procspawn = "1.0"
rand = "0.8"
reqwest = { version = "0.12", features = ["stream", "json"] }
reqwest-middleware = "0.3" # Cannot upgrade to 0.4 due to https://github.com/TrueLayer/reqwest-middleware/issues/204
reqwest-retry = "0.6" # Cannot upgrade to 0.7 due to https://github.com/TrueLayer/reqwest-middleware/issues/204
monoutils-store = { version = "0.2", path = "./monoutils-store" }
monoutils = { version = "0.2", path = "./monoutils" }
chrono = { version = "0.4", features = ["serde"] }
criterion = "0.5"
tempfile = "3.15"
test-log = "0.2"
typed-path = "0.10"
toml = "0.8"
typed-builder = "0.20"
uuid = { version = "1.11", features = ["v4"] }
pretty-error-debug = "0.3"
serde_ipld_dagcbor = "0.6"