1234[package]5authors = ['Unique Network <support@uniquenetwork.io>']6description = 'Unique Pallet'7edition = '2021'8homepage = 'https://unique.network'9license = 'GPLv3'10name = 'pallet-unique'11repository = 'https://github.com/UniqueNetwork/unique-chain'12version = "0.2.1"1314[package.metadata.docs.rs]15targets = ['x86_64-unknown-linux-gnu']1617[features]18default = ['std']19limit-testing = ["up-data-structs/limit-testing"]20runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']21std = [22 'evm-coder/std',23 'frame-benchmarking/std',24 'frame-support/std',25 'frame-system/std',26 'pallet-balances-adapter/std',27 'pallet-common/std',28 'pallet-evm-coder-substrate/std',29 'pallet-evm/std',30 'pallet-nonfungible/std',31 'parity-scale-codec/std',32 'sp-runtime/std',33 'sp-std/std',34 'up-data-structs/std',35]36stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]37try-runtime = ["frame-support/try-runtime"]38394041[dependencies]42parity-scale-codec = { workspace = true }4344ethereum = { workspace = true }45evm-coder = { workspace = true }46frame-benchmarking = { workspace = true, optional = true }47frame-support = { workspace = true }48frame-system = { workspace = true }49log = { workspace = true }50pallet-balances-adapter = { workspace = true }51pallet-common = { workspace = true }52pallet-evm = { workspace = true }53pallet-evm-coder-substrate = { workspace = true }54pallet-nonfungible = { workspace = true }55pallet-refungible = { workspace = true }56scale-info = { workspace = true }57sp-core = { workspace = true }58sp-io = { workspace = true }59sp-runtime = { workspace = true }60sp-std = { workspace = true }61up-data-structs = { workspace = true }