mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
aea2e9427b
* service: Don't depend on tokio-executor Seems to be a leftover dependency that's not used anymore. * offchain: Upgrade hyper to 0.13, which uses tokio 0.2 * offchain: Adapt HTTP tests to Tokio 0.2 * network: Don't transitively include tokio 0.2 in WASM 1) We don't specifically depend on Tokio codec impls 2) Conflating features in Cargo means that enabling Tokio runtime in the native environment will also do so in WASM, where it's obviously not implemented and causes a compilation error. * grafana-data-source: Pull hyper/tokio only in native environment
24 lines
716 B
TOML
24 lines
716 B
TOML
[package]
|
|
description = "Grafana data source server"
|
|
name = "grafana-data-source"
|
|
version = "0.8.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
futures-util = { version = "0.3.1", default-features = false, features = ["io"] }
|
|
serde_json = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
lazy_static = "1.4"
|
|
parking_lot = "0.10.0"
|
|
futures-timer = "3.0.1"
|
|
derive_more = "0.99"
|
|
|
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
|
async-std = { version = "1.0.1", features = ["unstable"] }
|
|
hyper = { version = "0.13.1", default-features = false, features = ["stream"] }
|
|
tokio = "0.2"
|