git.delta.rocks / unique-network / refs/commits / 9cba02dd9f43

difftreelog

source

primitives/data-structs/Cargo.toml1.9 KiBsourcehistory
1[package]2name = "up-data-structs"3authors = ["Unique Network <support@uniquenetwork.io>"]4description = "Unique data structs definitions"5edition = "2021"6license = 'GPLv3'7homepage = "https://unique.network"8repository = 'https://github.com/UniqueNetwork/unique-chain'9version = "0.2.2"1011[dependencies]12scale-info = { version = "2.0.1", default-features = false, features = [13    "derive",14] }15codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [16    'derive',17] }18serde = { version = "1.0.130", features = [19    'derive',20], default-features = false, optional = true }21frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }23sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }24sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26derivative = { version = "2.2.0", features = ["use_core"] }27struct-versioning = { path = "../../crates/struct-versioning" }28pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }29rmrk-traits = { default-features = false, path = "../rmrk-traits" }30bondrewd = { version = "0.1.14", features = [31    "derive",32], default-features = false }3334[features]35default = ["std"]36std = [37    "serde1",38    "serde/std",39    "codec/std",40    "frame-system/std",41    "frame-support/std",42    "sp-runtime/std",43    "sp-core/std",44    "sp-std/std",45    "pallet-evm/std",46    "rmrk-traits/std",47]48serde1 = ["serde/alloc"]49limit-testing = []50runtime-benchmarks = []