-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (33 loc) · 1.34 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
[package]
name = "ipse-miner"
version = "0.1.0"
authors = ["Lawliet-Chan"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ipfs-api = "0.8.0-rc.2"
clap = "3.0.0-beta.1"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
async-std = { version = "1.2.0" }
substrate-subxt = "0.10.0"
triehash = "0.8.3"
keccak-hasher = "0.15.2"
rusqlite = { version = "0.21.0", features = ["bundled"] }
http = "0.2.1"
futures = "0.3"
log = "0.4.0"
once_cell = "1.4.1"
tokio = {version = "0.2", features = ["full"]}
rocket = "0.4.5"
rocket_upload = "0.1.0"
# shell = { git = "https://github.com/google/rust-shell.git", package = "shell" ,version = "0.1.0" }
shells = "0.2.0"
sp-keyring = { version = "2.0.0-rc4", package = "sp-keyring" }
frame-support = { version = "2.0.0-rc4", package = "frame-support" }
frame-system = { version = "2.0.0-rc4", package = "frame-system" }
pallet-indices = { version = "2.0.0-rc4", package = "pallet-indices" }
sp-core = { version = "2.0.0-rc4", package = "sp-core" }
sp-runtime = { version = "2.0.0-rc4", package = "sp-runtime" }
sub-runtime = { path = "../ipse-core/bin/node/runtime", version = "2.0.0-rc4", package = "node-runtime"}
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive", "full"] }