mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
9d23d2a25a
* bump crates to v2.0.0 * fix crate authors * bump node runtime spec_version * remove unused import for no-std
19 lines
505 B
TOML
19 lines
505 B
TOML
[package]
|
|
description = "Substrate offchain workers primitives"
|
|
name = "substrate-offchain-primitives"
|
|
version = "2.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
client = { package = "substrate-client", path = "../../client", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../sr-primitives", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"client/std",
|
|
"runtime_primitives/std"
|
|
]
|