This repository has been archived by the owner on Mar 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
65 lines (61 loc) · 2.65 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
65
[workspace]
resolver = "2"
members = [
"ceramic",
"core",
"dapp-table/client",
"file-system",
"iroh-store",
"pgsql-store"
]
[workspace.dependencies]
anyhow = "1"
async-std = "1.12.0"
async-trait = "0.1.73"
base32 = "0.4.0"
bytes = "1.5.0"
ceramic-core = { git = "https://github.com/ceramicnetwork/rust-ceramic", branch = "main" }
ceramic-event = { git = "https://github.com/ceramicnetwork/rust-ceramic", branch = "main" }
ceramic-http-client = { git = "https://github.com/3box/ceramic-http-client-rs", branch = "main" }
ceramic-kubo-rpc-server = { git = "https://github.com/ceramicnetwork/rust-ceramic", branch = "main" }
chrono = { version = "0.4.30", features = ["serde"] }
dataverse-ceramic = { path = "./ceramic" }
dataverse-iroh-store = { path = "./iroh-store" }
dataverse-core = { path = "./core" }
dataverse-file-system = { path = "./file-system" }
dapp-table-client = { path = "./dapp-table/client" }
fang = { version = "0.10.4", default-features = false, features = ["blocking", "asynk"] }
futures = "0.3.15"
futures-util = "0.3.29"
hex = "0.4.3"
iroh = "0.12.0"
iroh-bytes = "0.12.0"
iroh-net = "0.12.0"
iroh-sync = "0.12.0"
int-enum = "0.5.0"
json-patch = "1.2.0"
log = "0.4.20"
native-tls = "0.2.11"
num_cpus = "1.16.0"
once_cell = "1.18.0"
postgres-openssl = "0.5.0"
quic-rpc = { version = "0.6", default-features = false, features = ["flume-transport"] }
quinn = "0.10"
rand = "0.8.5"
serde = { version = "1.0.183", default-features = false, features = ["derive"] }
serde_json = { version = "1.0.106", default-features = false, features = ["raw_value"] }
swagger = "6.4.1"
tempfile = "3.8.0"
tokio = { version = "1.31.0", default-features = false, features = ["full"] }
tracing = { version = "0.1.40", default-features = false }
url = "2.4.0"
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] }
diesel = { version = "2.1.4", default-features = false, features = ["postgres", "chrono", "uuid", "r2d2", "serde_json", "postgres_backend"] }
[patch.'https://github.com/ceramicnetwork/rust-ceramic']
ceramic-core = { git = "https://github.com/dataverse-os/rust-ceramic", branch = "patch-kubo-block-put" }
ceramic-event = { git = "https://github.com/dataverse-os/rust-ceramic", branch = "patch-kubo-block-put" }
ceramic-kubo-rpc-server = { git = "https://github.com/dataverse-os/rust-ceramic", branch = "patch-kubo-block-put" }
[patch.'https://github.com/3box/ceramic-http-client-rs']
ceramic-http-client = { git = "https://github.com/dataverse-os/ceramic-http-client-rs", branch = "patch-methods" }
[patch.'https://github.com/3box/rust-ceramic']
ceramic-event = { git = "https://github.com/dataverse-os/rust-ceramic", branch = "patch-kubo-block-put" }