mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 23:08:03 +00:00
308ab4f269
* WiP: HTTP Apis. * Working on the API. * Add docs, clean up the API. * Expose ext_ stuff as well. * Implement HTTP helpers for offchain sr-io. * Remove HTTP stuff. * Revert "Remove HTTP stuff." This reverts commit 7cca029d6ae93c5849b50edfcc6d2c313ba3e5bf. * HTTP apis. * Additional offchain methods. * Make it compile. * Implement wasm-ext boundary of offchain methods. * Add stubs for offchain stuff to prevent panics. * Fix tests. * Addres some more issues. * Introduce typedef, use unsafe from_utf8 * Bump runtime version. * Introduce error to distinguish deadline and io errors. * Add local_storage_cas * Some tests for offchain stuff. * Address more grumbles. * Fix tests compilation. * Fix borked merge. * Improve docs for expected return values from ext functions. * Adding new sign/enrypt/decrypt APIs.
28 lines
1002 B
TOML
28 lines
1002 B
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]
|
|
client = { package = "substrate-client", path = "../../core/client" }
|
|
consensus = { package = "substrate-consensus-common", path = "../../core/consensus/common" }
|
|
futures = "0.1.25"
|
|
log = "0.4"
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "./primitives" }
|
|
parity-codec = { version = "3.3", features = ["derive"] }
|
|
parking_lot = "0.7.1"
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives" }
|
|
tokio = "0.1.7"
|
|
transaction_pool = { package = "substrate-transaction-pool", path = "../../core/transaction-pool" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
test_client = { package = "substrate-test-client", path = "../../core/test-client" }
|
|
|
|
[features]
|
|
default = []
|