mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 19:47:59 +00:00
7df089241c
* Implement HTTP request in offchain workers
* Bump impl_version
* Don't compile offchain workers for WASM anymore
* Initialize HttpConnector as a fallback.
* Apply review suggestions 😳
37 lines
1.3 KiB
TOML
37 lines
1.3 KiB
TOML
[package]
|
|
description = "Substrate offchain workers"
|
|
name = "substrate-offchain"
|
|
version = "2.0.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
bytes = "0.4"
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
fnv = "1.0"
|
|
futures01 = { package = "futures", version = "0.1" }
|
|
futures-preview = "=0.3.0-alpha.17"
|
|
futures-timer = "0.2.1"
|
|
hyper = "0.12.33"
|
|
hyper-tls = "0.3.2"
|
|
log = "0.4"
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
|
parking_lot = "0.9.0"
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
rand = "0.7"
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
network = { package = "substrate-network", path = "../../core/network" }
|
|
keystore = { package = "substrate-keystore", path = "../keystore" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
client-db = { package = "substrate-client-db", path = "../../core/client/db/", default-features = true }
|
|
test-client = { package = "substrate-test-runtime-client", path = "../../core/test-runtime/client" }
|
|
tokio = "0.1"
|
|
|
|
[features]
|
|
default = []
|