-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
58 lines (54 loc) · 1.6 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
[workspace]
resolver = "2"
members = [
"dispatch_examples/greeter",
"frc42_dispatch",
"frc42_dispatch/hasher",
"frc42_dispatch/macros",
"frc42_dispatch/macros/example",
"frc46_token",
"frc53_nft",
"fvm_actor_utils",
"fvm_dispatch_tools",
"testing/integration",
"testing/test_actors",
"testing/test_actors/actors/*",
"testing/test_actors/actors/frc46_factory_token/token_impl",
]
[workspace.dependencies]
blake2b_simd = { version = "1.0.0" }
clap = { version = "4.3.21", features = ["derive"] }
cid = { version = "0.11.1", default-features = false, features = [
"serde",
] }
fvm = { version = "~4.5", default-features = false }
fvm_integration_tests = "~4.5"
fvm_ipld_amt = "0.7.3"
fvm_ipld_bitfield = "0.7.0"
fvm_ipld_blockstore = "0.3.0"
fvm_ipld_encoding = "0.5.0"
fvm_ipld_hamt = "0.10.2"
fvm_sdk = "~4.5"
fvm_shared = "~4.5"
serde = { version = "1.0.136", features = ["derive"] }
serde_tuple = { version = "0.5.0" }
thiserror = { version = "1.0.31" }
integer-encoding = { version = "4.0.0" }
num-traits = { version = "0.2.15" }
anyhow = { version = "1.0.56" }
multihash-codetable = { version = "0.1.4" }
# internal deps of published packages
frc42_dispatch = { version = "8.0.0", path = "./frc42_dispatch", default-features = false }
fvm_actor_utils = { version = "12.0.0", path = "./fvm_actor_utils" }
# only consumed by non-published packages
frc53_nft = { path = "./frc53_nft" }
frc46_token = { path = "./frc46_token" }
[profile.wasm]
inherits = "release"
panic = "abort"
overflow-checks = false
lto = true
opt-level = "z"
strip = true
codegen-units = 1
incremental = false