-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (26 loc) · 995 Bytes
/
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
[package]
name = "fil_actor_bundler"
description = "An IPLD CAR bundling tool for Wasm bytecode"
version = "7.0.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
repository = "https://github.com/filecoin-project/builtin-actors-bundler"
keywords = ["filecoin", "web3", "wasm"]
[dependencies]
clap = { version = "4.3.21", default-features = false, features = ["derive", "std", "help", "usage", "error-context"] }
fvm_ipld_car = "0.8.0"
cid = { version = "0.11.1", default-features = false, features = ["serde"] }
multihash-codetable = { version = "0.1.4", default-features = false, features = ["blake2b"] }
async-std = "1.12.0"
futures = { version = "0.3.28", default-features = false }
anyhow = "1.0.72"
serde_ipld_dagcbor = "0.4.0"
serde_json = "1.0.104"
serde = { version = "1.0.183", features = ["derive"] }
fvm_ipld_blockstore = "0.3.0"
fvm_ipld_encoding = "0.5.0"
[dev-dependencies]
tempfile = "3.7.1"
rand = "0.8.5"
num-traits = "0.2.16"