1[package]2name = "pallet-data-management"3version = "0.1.1"4license = "GPLv3"5edition = "2021"67[dependencies]8scale-info = { version = "2.0.1", default-features = false, features = [9 "derive",10] }11ethereum = { version = "0.14.0", default-features = false }12frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19pallet-identity = { default-features = false, path = "../identity" }20pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }21fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }2223[dependencies.codec]24default-features = false25features = ['derive']26package = 'parity-scale-codec'27version = '3.1.2'2829[features]30default = ["std", "runtime-benchmarks"]31std = [32 "frame-support/std",33 "frame-system/std",34 "frame-benchmarking/std",35 "sp-runtime/std",36 "sp-std/std",37 "sp-io/std",38 "sp-core/std",39 "pallet-evm/std",40 "fp-evm/std",41]42runtime-benchmarks = ["frame-benchmarking"]43try-runtime = ["frame-support/try-runtime"]