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

difftreelog

source

primitives/common/Cargo.toml809 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	'frame-support/std',17	'pallet-evm/std',18	'sp-consensus-aura/std',19	'sp-core/std',20	'sp-runtime/std',21	'sp-std/std',22]2324[dependencies]25cumulus-primitives-core = { workspace = true }26fp-rpc = { workspace = true }27frame-support = { workspace = true }28pallet-evm = { workspace = true }29sp-consensus-aura = { workspace = true }30sp-core = { workspace = true }31sp-runtime = { workspace = true }32sp-std = { workspace = true }