1[package]2name = "pallet-contracts-primitives"3version = "3.0.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"6license = "Apache-2.0"7homepage = "https://substrate.dev"8repository = "https://github.com/paritytech/substrate/"9description = "A crate that hosts a common definitions that are relevant for the pallet-contracts."10readme = "README.md"1112[package.metadata.docs.rs]13targets = ["x86_64-unknown-linux-gnu"]1415[dependencies]16bitflags = "1.0"17codec = { package = "parity-scale-codec", version = "2", default-features = false, features = ["derive"] }18serde = { version = "1", features = ["derive"], optional = true }192021sp-core = { version = "3.0.0", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3', default-features = false }22sp-std = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }23sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.3' }2425[features]26default = ["std"]27std = [28 "codec/std",29 "sp-core/std",30 "sp-runtime/std",31 "sp-std/std",32 "serde",33]