Files
pezkuwi-subxt/polkadot/core-primitives/Cargo.toml
T
Lulu 0142a01353 Add license to crates (#7578)
* Add license to crates

This is required to publish to crates.io

* Add more licenses
2023-08-04 18:33:05 +02:00

25 lines
818 B
TOML

[package]
name = "polkadot-core-primitives"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
parity-scale-codec = { version = "3.6.1", default-features = false, features = [ "derive" ] }
[features]
default = [ "std" ]
std = [
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
"scale-info/std",
"parity-scale-codec/std",
]