git.delta.rocks / unique-network / refs/commits / 24d3f67bfdff

difftreelog

source

pallets/unique/Cargo.toml2.8 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-common/std',28	'pallet-evm-coder-substrate/std',29	'pallet-evm/std',30	'pallet-nonfungible/std',31	'serde/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]42codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }43ethereum = { version = "0.12.0", default-features = false }44evm-coder = { default-features = false, path = "../../crates/evm-coder" }45frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }46frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }47frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }48pallet-common = { default-features = false, path = "../common" }49pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }50pallet-evm-coder-substrate = { default-features = false, path = "../../pallets/evm-coder-substrate" }51pallet-nonfungible = { default-features = false, path = "../../pallets/nonfungible" }52pallet-refungible = { default-features = false, path = "../../pallets/refungible" }53scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }54serde = { default-features = false, features = ['derive'], version = "1.0.130" }55sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }56sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }57sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }58sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }59up-data-structs = { default-features = false, path = "../../primitives/data-structs" }