[package] name = "noble-contracts-primitives" 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/noble-contracts-primitives" description = "A crate that hosts a common definitions that are relevant for the noble-contracts." readme = "README.md" # publish = false [package.metadata.docs.rs] targets = ["x86_64-unknown-linux-gnu"] [dependencies] # This crate should not rely on any of the fabric primitives. bitflags = "1.0" codec = { package = "tetsy-scale-codec", version = "2.0.1", default-features = false, features = ["derive"] } tetcore-std = { version = "2.0.2", default-features = false, path = "../../../primitives/std" } tp-runtime = { version = "2.0.2", default-features = false, path = "../../../primitives/runtime" } [features] default = ["std"] std = [ "codec/std", "tp-runtime/std", "tetcore-std/std", ]