git.delta.rocks / unique-network / refs/commits / 712c4673aa4f

difftreelog

source

primitives/common/Cargo.toml1.5 KiBsourcehistory
1[package]2authors = ['Unique Network <support@uniquenetwork.io>']3description = 'Unique Runtime Common Primitives'4edition = '2021'5homepage = 'https://unique.network'6license = 'All Rights Reserved'7name = 'up-common'8repository = 'https://github.com/UniqueNetwork/unique-chain'9version.workspace = true1011[features]12default = ['std']13std = [14    'sp-std/std',15    'frame-support/std',16    'sp-runtime/std',17    'sp-core/std',18    'sp-consensus-aura/std',19    'fp-rpc/std',20    'cumulus-primitives-core/std',21    'pallet-evm/std',22]2324[dependencies.sp-std]25default-features = false26git = "https://github.com/paritytech/substrate"27branch = "polkadot-v0.9.36"2829[dependencies.frame-support]30default-features = false31git = "https://github.com/paritytech/substrate"32branch = "polkadot-v0.9.36"3334[dependencies.sp-runtime]35default-features = false36git = "https://github.com/paritytech/substrate"37branch = "polkadot-v0.9.36"3839[dependencies.sp-core]40default-features = false41git = "https://github.com/paritytech/substrate"42branch = "polkadot-v0.9.36"4344[dependencies.sp-consensus-aura]45default-features = false46git = "https://github.com/paritytech/substrate"47branch = "polkadot-v0.9.36"4849[dependencies.fp-rpc]50default-features = false51git = "https://github.com/uniquenetwork/frontier"52branch = "unique-polkadot-v0.9.36"5354[dependencies.cumulus-primitives-core]55default-features = false56git = "https://github.com/paritytech/cumulus"57branch = "polkadot-v0.9.36"5859[dependencies.pallet-evm]60default-features = false61git = "https://github.com/uniquenetwork/frontier"62branch = "unique-polkadot-v0.9.36"