1[package]2name = "pallet-test-utils"3version = "0.1.0"4license = "GPLv3"5edition = "2021"6publish = false78[dependencies]9codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }10scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }11frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }1314[features]15default = ["std"]16std = [17 "codec/std",18 "scale-info/std",19 "frame-support/std",20 "frame-system/std",21]