[package] name = "fil_builtin_actors_state" description = "Builtin Actor state utils for Filecoin" version = "9.0.1" license = "MIT OR Apache-2.0" authors = ["ChainSafe Systems ", "Protocol Labs", "Filecoin Core Devs"] edition = "2018" repository = "https://github.com/filecoin-project/builtin-actors" keywords = ["filecoin", "web3", "wasm"] [lib] ## lib is necessary for integration tests ## cdylib is necessary for Wasm build crate-type = ["cdylib", "lib"] [dependencies] fil_actor_account = { version = "9.0.1", path = "../actors/account"} fil_actor_verifreg = { version = "9.0.1", path = "../actors/verifreg"} fil_actor_datacap = { version = "9.0.1", path = "../actors/datacap"} fil_actor_cron = { version = "9.0.1", path = "../actors/cron"} fil_actor_market = { version = "9.0.1", path = "../actors/market"} fil_actor_multisig = { version = "9.0.1", path = "../actors/multisig"} fil_actor_paych = { version = "9.0.1", path = "../actors/paych"} fil_actor_power = { version = "9.0.1", path = "../actors/power"} fil_actor_miner = { version = "9.0.1", path = "../actors/miner"} fil_actor_reward = { version = "9.0.1", path = "../actors/reward"} fil_actor_system = { version = "9.0.1", path = "../actors/system"} fil_actor_init = { version = "9.0.1", path = "../actors/init"} fil_actors_runtime = { version = "9.0.1", path = "../runtime"} fvm_shared = { version = "2.0.0-alpha.2", default-features = false } fvm_ipld_encoding = "0.2.2" fvm_ipld_blockstore = "0.1.1" num-traits = "0.2.14" anyhow = "1.0.65" bimap = { version = "0.6.2" } num-derive = "0.3.3" serde = { version = "1.0.136", features = ["derive"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } [dev-dependencies] [features] fil-actor = ["fil_actors_runtime/fil-actor"]