forked from filecoin-project/ref-fvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (40 loc) · 968 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[workspace]
members = [
"fvm",
"sdk",
"shared",
"actors/*",
"cgo/rust",
"examples/actor",
"examples/blockstore-cgo/user",
"testing/conformance",
"ipld/*",
]
exclude = [
"examples/blockstore-cgo"
]
default-members = [
"fvm",
"sdk",
"shared",
"actors/*",
"testing/conformance",
"ipld/*"
# don't build the examples by default, as they require a specific target and profile.
# build them with cargo make examples
# "examples/*"
]
[patch.crates-io]
multihash = { git = "https://github.com/multiformats/rust-multihash", branch = "next" }
cid = { git = "https://github.com/multiformats/rust-cid", branch = "steb/cbor-hack" }
ipld_hamt = { path = "./ipld/hamt" }
ipld_amt = { path = "./ipld/amt" }
fvm_shared = { path = "./shared" }
forest_bitfield = { path = "./ipld/bitfield" }
[profile.actor]
inherits = "release"
panic = "abort"
overflow-checks = true
lto = true
opt-level = "z"
#strip = true