mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-10 13:27:30 +00:00
07a514e9f7
* get Substrate dependencies from crates.io * removing unused dependencies * cargo fmt --all * remove commented dependencies * remove commented dependencies again * try to fix compilation
23 lines
520 B
TOML
23 lines
520 B
TOML
[package]
|
|
name = "bp-millau"
|
|
description = "Primitives of Millau runtime."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
|
|
# Substrate Based Dependencies
|
|
sp-api = { version = "2.0", default-features = false }
|
|
sp-core = { version = "2.0", default-features = false }
|
|
sp-std = { version = "2.0", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-std/std",
|
|
]
|