-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
92 lines (85 loc) · 3.56 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[workspace]
members = ["cli", "provider", "sdk", "signer"]
resolver = "2"
[workspace.package]
authors = ["ADM Contributors"]
description = "ADM network interfaces & tooling for scalable subnets & onchain data storage."
edition = "2021"
homepage = "https://github.com/textileio/basin/"
license = "MIT OR Apache-2.0"
readme = "./README.md"
repository = "https://github.com/textileio/basin/"
keywords = ["storage", "s3", "ipc", "filecoin"]
version = "0.1.0"
[workspace.dependencies]
anyhow = "1.0.82"
async-stream = "0.3.5"
async-tempfile = "0.5.0"
async-trait = "0.1.80"
base64 = "0.22.0"
bytes = "1.6.0"
cid = { version = "0.10.1", default-features = false, features = [
"serde-codec",
"std",
] }
clap = { version = "4.1.14", features = [
"color",
"derive",
"env",
"string",
"unicode",
] }
clap-stdin = { version = "0.4.0", features = ["tokio"] }
console = "0.15.8"
ethers = "2.0.14"
ethers-contract = "2.0.14"
fnv = "1.0"
futures = "0.3.17"
futures-core = "0.3.30"
futures-util = "0.3.17"
humantime = "2.1.0"
hex = "0.4.3"
indicatif = "0.17.8"
lazy_static = "1.4.0"
num-traits = "0.2.18"
prost = "0.11.9"
reqwest = { version = "0.11.27", features = ["json", "stream", "multipart"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
stderrlog = "0.6.0"
tokio = { version = "1.37.0", features = ["fs", "macros", "rt-multi-thread"] }
tokio-util = "0.7.1"
tokio-stream = "0.1.0"
tracing = "0.1.40"
unixfs-v1 = { git = "https://github.com/ipfs-rust/unixfsv1", branch = "master" }
rand = "0.8.4"
# Using the same tendermint-rs dependency as tower-abci. From both we are interested in v037 modules.
tendermint = { version = "0.31.1", features = ["secp256k1"] }
tendermint-proto = "0.31.1"
tendermint-rpc = { version = "0.31.1", features = [
"secp256k1",
"http-client",
"websocket-client",
] }
fvm_shared = "4.1.0"
fvm_ipld_encoding = "0.4.0"
fendermint_actor_accumulator = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
fendermint_actor_machine = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
fendermint_actor_objectstore = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
fendermint_crypto = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
fendermint_vm_actor_interface = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
fendermint_vm_message = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
ipc_actors_abis = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
ipc-api = { git = "https://github.com/textileio/ipc.git", rev = "89c3871b8ba7eaf30e05ef0f29b6e3fb5c5789d7" }
# Uncomment entries below when working locally on ipc and this repo simultaneously.
# Assumes the ipc checkout is in a sibling directory with the same name.
[patch."https://github.com/textileio/ipc.git"]
#fendermint_actor_accumulator = { path = "../ipc/fendermint/actors/accumulator" }
#fendermint_actor_machine = { path = "../ipc/fendermint/actors/machine" }
#fendermint_actor_objectstore = { path = "../ipc/fendermint/actors/objectstore" }
#fendermint_crypto = { path = "../ipc/fendermint/crypto" }
#fendermint_vm_actor_interface = { path = "../ipc/fendermint/vm/actor_interface" }
#fendermint_vm_message = { path = "../ipc/fendermint/vm/message" }
#
#ipc_actors_abis = { path = "../ipc/contracts/binding" }
#ipc-api = { path = "../ipc/ipc/api" }