forked from PolkaX/plum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (54 loc) · 1019 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "plum"
version = "0.1.0"
authors = ["The PolkaX Authors"]
edition = "2018"
license = "GPL-3.0"
[lib]
name = "plum"
[[bin]]
name = "plum_node"
path = "src/bin/main.rs"
[dependencies]
#[replace]
#"cid:0.5.0" = { git = "https://github.com/PolkaX/rust-cid", branch = "impl-cbor-and-json" }
[workspace]
members = [
"chain",
# "cli",
"hashing",
# "libp2p",
# "network",
# "peermgr",
"params",
"wallet",
# IPFS and IPLD
"ipfs/block",
"ipfs/blockstore",
"ipfs/datastore",
"ipfs/datastore-memory",
"ipfs/datastore-rocksdb",
"ipld",
# primitives
"primitives/address",
"primitives/bigint",
"primitives/bitfield",
"primitives/bitfield/rle",
"primitives/block",
"primitives/bytes",
"primitives/crypto",
"primitives/fc",
"primitives/hash",
"primitives/message",
"primitives/peerid",
"primitives/piece",
"primitives/sector",
"primitives/tipset",
"primitives/types",
# VM
"vm",
"actor",
# tools
"api-client/jsonrpc-client",
"api-client"
]