git.delta.rocks / unique-network / refs/commits / 6bb4298375fb

difftreelog

source

primitives/common/Cargo.toml876 Bsourcehistory
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	'cumulus-primitives-core/std',15	'fp-rpc/std',16	'fp-self-contained/std',17	'frame-support/std',18	'pallet-evm/std',19	'sp-consensus-aura/std',20	'sp-core/std',21	'sp-runtime/std',22	'sp-std/std',23]2425[dependencies]26cumulus-primitives-core = { workspace = true }27fp-rpc = { workspace = true }28fp-self-contained = { workspace = true }29frame-support = { workspace = true }30pallet-evm = { workspace = true }31sp-consensus-aura = { workspace = true }32sp-core = { workspace = true }33sp-runtime = { workspace = true }34sp-std = { workspace = true }