mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "sc-sysinfo"
|
|
version = "27.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "A crate that provides basic hardware and software telemetry information."
|
|
documentation = "https://docs.rs/sc-sysinfo"
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
futures = "0.3.30"
|
|
libc = "0.2"
|
|
log = { workspace = true, default-features = true }
|
|
rand = "0.8.5"
|
|
rand_pcg = "0.3.1"
|
|
derive_more = "0.99"
|
|
regex = "1"
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
sc-telemetry = { path = "../telemetry" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sp-crypto-hashing = { path = "../../primitives/crypto/hashing" }
|
|
sp-io = { path = "../../primitives/io" }
|
|
sp-std = { path = "../../primitives/std" }
|
|
|
|
[dev-dependencies]
|
|
sp-runtime = { path = "../../primitives/runtime" }
|