git.delta.rocks / unique-network / refs/commits / 786ff7ed1061

difftreelog

source

pallets/unique/Cargo.toml3.2 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']19runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']20std = [21    'codec/std',22    'serde/std',23    'frame-support/std',24    'frame-system/std',25    'pallet-evm/std',26    'pallet-common/std',27    'up-data-structs/std',28    'sp-std/std',29    'sp-runtime/std',30    'frame-benchmarking/std',31    'evm-coder/std',32    'pallet-evm-coder-substrate/std',33    'pallet-nonfungible/std',34]35try-runtime = ["frame-support/try-runtime"]36limit-testing = ["up-data-structs/limit-testing"]37stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]38################################################################################39# Standart Dependencies4041[dependencies.serde]42default-features = false43features = ['derive']44version = '1.0.130'4546[dependencies.ethereum]47version = "0.12.0"48default-features = false4950################################################################################51# Substrate Dependencies5253[dependencies.codec]54default-features = false55features = ['derive']56package = 'parity-scale-codec'57version = '3.1.2'5859[dependencies.frame-benchmarking]60default-features = false61optional = true62git = "https://github.com/paritytech/substrate"63branch = "polkadot-v0.9.30"6465[dependencies.frame-support]66default-features = false67git = "https://github.com/paritytech/substrate"68branch = "polkadot-v0.9.30"6970[dependencies.frame-system]71default-features = false72git = "https://github.com/paritytech/substrate"73branch = "polkadot-v0.9.30"7475[dependencies.sp-std]76default-features = false77git = "https://github.com/paritytech/substrate"78branch = "polkadot-v0.9.30"7980[dependencies.sp-runtime]81default-features = false82git = "https://github.com/paritytech/substrate"83branch = "polkadot-v0.9.30"8485[dependencies.sp-core]86default-features = false87git = "https://github.com/paritytech/substrate"88branch = "polkadot-v0.9.30"8990[dependencies.sp-io]91default-features = false92git = "https://github.com/paritytech/substrate"93branch = "polkadot-v0.9.30"9495################################################################################96# Local Dependencies97[dependencies]98up-data-structs = { default-features = false, path = "../../primitives/data-structs" }99scale-info = { version = "2.0.1", default-features = false, features = [100    "derive",101] }102pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }103pallet-common = { default-features = false, path = "../common" }104evm-coder = { default-features = false, path = '../../crates/evm-coder' }105pallet-evm-coder-substrate = { default-features = false, path = '../../pallets/evm-coder-substrate' }106pallet-nonfungible = { default-features = false, path = '../../pallets/nonfungible' }107pallet-refungible = { default-features = false, path = '../../pallets/refungible' }