-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathCargo.toml
30 lines (26 loc) · 971 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
[package]
name = "fil_actor_cron"
description = "Builtin cron actor for Filecoin"
version = "8.0.0-rc.1"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "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 = "8.0.0-rc.1", path = "../runtime", features = ["fil-actor"] }
fvm_shared = { version = "0.8.0", default-features = false }
num-traits = "0.2.14"
num-derive = "0.3.3"
log = "0.4.14"
serde = { version = "1.0.136", features = ["derive"] }
fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"
[dev-dependencies]
fil_actors_runtime = { version = "8.0.0-rc.1", path = "../runtime", features = ["test_utils", "sector-default"] }
[features]
fil-actor = []