mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
2b8af8cb1a
* chore(release): sp-core v7.0.0 * chore(release): sp-runtime v7.0.0 * fix bad merge
23 lines
713 B
TOML
23 lines
713 B
TOML
[package]
|
|
description = "Substrate offchain workers primitives"
|
|
name = "sp-offchain"
|
|
version = "4.0.0-dev"
|
|
license = "Apache-2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
|
|
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
|
|
sp-runtime = { version = "7.0.0", default-features = false, path = "../runtime" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["sp-api/std", "sp-core/std", "sp-runtime/std"]
|