mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
3938c1cb62
* Bump sp-storage * Bump sp-rpc * Bump sp-io * Bump sp-trie * Bump sp-state-machine * Bump sp-externalities * Bump sp-keystore * Bump sp-application-crypto * Bump pallet-contracts-primitives * Bump sp-core * Bump sp-runtime-interface * Bump sp-wasm-interface * Bump sp-runtime * Bump sp-storage * Update lock file * Revert "Bump sp-storage" This reverts commit f86c6db1ae334e28207b658fd90714ade0332e3b. * Update lock file
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "sp-timestamp"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Substrate core types and inherents for timestamps."
|
|
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-std = { version = "4.0.0", default-features = false, path = "../std" }
|
|
sp-runtime = { version = "5.0.0", default-features = false, path = "../runtime" }
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
|
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
|
|
thiserror = { version = "1.0.30", optional = true }
|
|
log = { version = "0.4.8", optional = true }
|
|
futures-timer = { version = "3.0.2", optional = true }
|
|
async-trait = { version = "0.1.50", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
"sp-runtime/std",
|
|
"codec/std",
|
|
"sp-inherents/std",
|
|
"thiserror",
|
|
"log",
|
|
"futures-timer",
|
|
"async-trait",
|
|
]
|