[package] name = "fabric-support" version = "2.0.0" authors = ["Parity Technologies ", "Tetcoin Developers "] edition = "2018" license = "Apache-2.0" keywords = ["tetcoin", "tetcore", "crypto", "blockchain", "framework"] categories = ["cryptography::cryptocurrencies"] homepage = "https://core.tetcoin.org" repository = "https://github.com/tetcoin/tetcore" documentation = "https://docs.rs/support" description = "Support code for the runtime." readme = "README.md" [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] log = "0.4" serde = { version = "1.0.101", optional = true, features = ["derive"] } codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] } fabric-metadata = { version = "12.0.0", default-features = false, path = "../metadata" } tetcore-std = { version = "2.0.2", default-features = false, path = "../../primitives/std" } tet-io = { version = "2.0.2", default-features = false, path = "../../primitives/io" } tp-runtime = { version = "2.0.2", default-features = false, path = "../../primitives/runtime" } tetcore-tracing = { version = "2.0.2", default-features = false, path = "../../primitives/tracing" } tet-core = { version = "2.0.2", default-features = false, path = "../../primitives/core" } arithmetic = { version = "2.0.2", default-features = false, path = "../../primitives/arithmetic" } tp-inherents = { version = "2.0.2", default-features = false, path = "../../primitives/inherents" } fabric-support-procedural = { version = "2.0.1", default-features = false, path = "./procedural" } paste = "0.1.6" once_cell = { version = "1", default-features = false, optional = true } tp-state-machine = { version = "0.8.2", optional = true, path = "../../primitives/state-machine" } bitflags = "1.2" impl-trait-for-tuples = "0.2.0" smallvec = "1.4.1" [dev-dependencies] pretty_assertions = "0.6.1" # fabric-system = { version = "2.0.0", path = "../system" } fabric-system = { path = "../system" } tetsy-util-mem = { version = "0.9.0", default-features = false, features = ["tetsy-primitive-types"] } # tetcore-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } tetcore-test-runtime-client = { path = "../../test-utils/runtime/client" } tp-api = { version = "2.0.2", default-features = false, path = "../../primitives/api" } [features] default = ["std"] std = [ "once_cell", "serde", "tet-io/std", "codec/std", "tetcore-std/std", "tp-runtime/std", "tetcore-tracing/std", "arithmetic/std", "fabric-metadata/std", "tp-inherents/std", "tp-state-machine", "fabric-support-procedural/std", ] nightly = [] strict = [] runtime-benchmarks = []