git.delta.rocks / unique-network / refs/commits / bce2cc1e9ab8

difftreelog

source

pallets/unique/Cargo.toml1.9 KiBsourcehistory
1################################################################################2# Package34[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	'codec/std',23	'evm-coder/std',24	'frame-benchmarking/std',25	'frame-support/std',26	'frame-system/std',27	'pallet-balances-adapter/std',28	'pallet-common/std',29	'pallet-evm-coder-substrate/std',30	'pallet-evm/std',31	'pallet-nonfungible/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"]3839################################################################################40# Local Dependencies41[dependencies]42# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.43codec = { workspace = true, package = "parity-scale-codec" }4445ethereum = { workspace = true }46evm-coder = { workspace = true }47frame-benchmarking = { workspace = true, optional = true }48frame-support = { workspace = true }49frame-system = { workspace = true }50log = { workspace = true }51pallet-balances-adapter = { workspace = true }52pallet-common = { workspace = true }53pallet-evm = { workspace = true }54pallet-evm-coder-substrate = { workspace = true }55pallet-nonfungible = { workspace = true }56pallet-refungible = { workspace = true }57scale-info = { workspace = true }58sp-core = { workspace = true }59sp-io = { workspace = true }60sp-runtime = { workspace = true }61sp-std = { workspace = true }62up-data-structs = { workspace = true }