1[package]2name = "pallet-refungible"3version = "0.1.0"4edition = "2021"56[dependencies.codec]7default-features = false8features = ['derive']9package = 'parity-scale-codec'10version = '2.0.0'1112[dependencies]13frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }14frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }15sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }16sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }17sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }18pallet-common = { default-features = false, path = '../common' }19up-data-structs = { default-features = false, path = '../../primitives/data-structs' }20frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }21scale-info = { version = "1.0.0", default-features = false, features = [22 "derive",23] }2425[features]26default = ["std"]27std = [28 "frame-support/std",29 "frame-system/std",30 "sp-runtime/std",31 "sp-std/std",32 "up-data-structs/std",33 "pallet-common/std",34 'frame-benchmarking/std',35]36runtime-benchmarks = [37 'frame-benchmarking',38 'frame-support/runtime-benchmarks',39 'frame-system/runtime-benchmarks',40]