[package] name = "fil_actor_power" description = "Builtin power actor 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_actors_runtime = { version = "9.0.1", path = "../../runtime" } fvm_shared = { version = "2.0.0-alpha.2", default-features = false } fvm_ipld_hamt = "0.5.1" num-traits = "0.2.14" num-derive = "0.3.3" log = "0.4.14" indexmap = { version = "1.8.0", features = ["serde-1"] } cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] } integer-encoding = { version = "3.0.3", default-features = false } lazy_static = "1.4.0" serde = { version = "1.0.136", features = ["derive"] } anyhow = "1.0.65" fvm_ipld_blockstore = "0.1.1" fvm_ipld_encoding = "0.2.2" [dev-dependencies] fil_actors_runtime = { version = "9.0.1", path = "../../runtime", features = ["test_utils", "sector-default"] } fil_actor_reward = { path = "../reward" } [features] fil-actor = ["fil_actors_runtime/fil-actor"]