-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.63 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
[package]
name = "uptime-checker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cid = { version = "0.8.4", default-features = false }
multihash = { version = "0.16.2", default-features = false }
# FIXME: Pointing to a fork of ref-fvm. This needs to change
# once features are fully implemented.
fvm_sdk = { git = "https://github.com/adlrocha/ref-fvm.git" }
fvm_shared = { git = "https://github.com/adlrocha/ref-fvm.git" }
fvm_ipld_blockstore = { git = "https://github.com/adlrocha/ref-fvm.git" }
fvm_ipld_hamt = { git = "https://github.com/adlrocha/ref-fvm.git" }
fvm_ipld_encoding = { git = "https://github.com/adlrocha/ref-fvm.git" }
serde = { version = "1.0.136", features = ["derive"] }
serde_bytes = "0.11.7"
serde_json = "1.0.85"
serde_tuple = "0.5"
num-traits = "0.2.14"
num = "0.2.1"
lazy_static = "1.4.0"
anyhow = "1.0.63"
[dev-dependencies]
fvm = { git = "https://github.com/adlrocha/ref-fvm.git" }
fvm_integration_tests = { git = "https://github.com/adlrocha/ref-fvm.git" }
libsecp256k1 = { version = "0.7" }
rand = "0.8"
rand_chacha = "0.3"
wasmtime = "0.35.2"
num-traits = "0.2"
wabt = "0.10.0"
blake2b_simd = "1.0.0"
[build-dependencies]
wasm-builder = "3.0.1"
wasmtime = "0.35.2"
[patch.crates-io]
fvm_shared = { path = "./ref-fvm/shared" }
fvm_sdk = { path = "./ref-fvm/sdk" }
fvm_ipld_hamt = { path = "./ref-fvm/ipld/hamt" }
fvm_ipld_amt = { path = "./ref-fvm/ipld/amt" }
fvm_ipld_bitfield = { path = "./ref-fvm/ipld/bitfield"}
fvm_ipld_encoding = { path = "./ref-fvm/ipld/encoding"}
fvm_ipld_blockstore = { path = "./ref-fvm/ipld/blockstore"}