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

difftreelog

source

Cargo.toml11.9 KiBsourcehistory
1[workspace]2default-members = ['client/*', 'node/*', 'runtime/opal']3members = [4	'client/*',5	'crates/*',6	'node/*',7	'pallets/*',8	'primitives/*',9	'runtime/opal',10	'runtime/quartz',11	'runtime/tests',12	'runtime/unique',13]14package.version = "1.2.0"15resolver = "2"1617[profile.release]18# Runtime requires unwinding19panic = "unwind"2021[profile.production]22codegen-units = 123inherits = "release"24lto = true25opt-level = 32627[profile.integration-tests]28debug-assertions = true29inherits = "release"3031[workspace.dependencies]32# Unique33app-promotion-rpc = { path = "primitives/app_promotion_rpc", default-features = false }34evm-coder = { version = "0.4.2", default-features = false, features = ['bondrewd'] }35pallet-app-promotion = { path = "pallets/app-promotion", default-features = false }36pallet-balances-adapter = { default-features = false, path = "pallets/balances-adapter" }37pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.3.0" }38pallet-collator-selection = { default-features = false, path = "pallets/collator-selection" }39pallet-common = { default-features = false, path = "pallets/common" }40pallet-configuration = { default-features = false, path = "pallets/configuration" }41pallet-evm-coder-substrate = { default-features = false, path = "pallets/evm-coder-substrate" }42pallet-evm-contract-helpers = { path = "pallets/evm-contract-helpers", default-features = false }43pallet-evm-migration = { path = "pallets/evm-migration", default-features = false }44pallet-evm-transaction-payment = { path = "pallets/evm-transaction-payment", default-features = false }45pallet-foreign-assets = { default-features = false, path = "pallets/foreign-assets" }46pallet-fungible = { default-features = false, path = "pallets/fungible" }47pallet-gov-origins = { default-features = false, path = "pallets/gov-origins" }48pallet-identity = { default-features = false, path = "pallets/identity" }49pallet-inflation = { path = "pallets/inflation", default-features = false }50pallet-maintenance = { default-features = false, path = "pallets/maintenance" }51pallet-nonfungible = { default-features = false, path = "pallets/nonfungible" }52pallet-refungible = { default-features = false, path = "pallets/refungible" }53pallet-structure = { default-features = false, path = "pallets/structure" }54pallet-test-utils = { default-features = false, path = "test-pallets/utils" }55pallet-unique = { path = "pallets/unique", default-features = false }56precompile-utils-macro = { path = "runtime/common/ethereum/precompiles/utils/macro" }57struct-versioning = { path = "crates/struct-versioning" }58uc-rpc = { path = "client/rpc" }59unique-rpc = { path = "node/rpc" }60up-common = { path = "primitives/common", default-features = false }61up-data-structs = { path = "primitives/data-structs", default-features = false }62up-pov-estimate-rpc = { path = "primitives/pov-estimate-rpc", default-features = false }63up-rpc = { path = "primitives/rpc", default-features = false }64up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.3.0" }6566# Unique: Runtimes67opal-runtime = { path = "runtime/opal" }68quartz-runtime = { path = "runtime/quartz" }69unique-runtime = { path = "runtime/unique" }7071# Frontier (Unique patches over the Parity version)72fc-api = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }73fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }74fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }75fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }76fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }77fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }78fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }79fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }80fp-self-contained = { default-features = false, features = [81	"serde",82], git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }83fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }84pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }85pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }86pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }87pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.3.0" }8889# Parity90codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.6.5" }91cumulus-client-cli = "0.4.0"92cumulus-client-collator = "0.4.0"93cumulus-client-consensus-aura = "0.4.0"94cumulus-client-consensus-common = "0.4.0"95cumulus-client-consensus-proposer = "0.4.0"96cumulus-client-network = "0.4.0"97cumulus-client-service = "0.4.0"98cumulus-pallet-aura-ext = { default-features = false, version = "0.4.0" }99cumulus-pallet-dmp-queue = { default-features = false, version = "0.4.0" }100cumulus-pallet-parachain-system = { default-features = false, version = "0.4.0" }101cumulus-pallet-xcm = { default-features = false, version = "0.4.0" }102cumulus-pallet-xcmp-queue = { default-features = false, version = "0.4.0" }103cumulus-primitives-aura = { default-features = false, version = "0.4.0" }104cumulus-primitives-core = { default-features = false, version = "0.4.0" }105cumulus-primitives-parachain-inherent = { default-features = false, version = "0.4.0" }106cumulus-primitives-timestamp = { default-features = false, version = "0.4.0" }107cumulus-primitives-utility = { default-features = false, version = "0.4.0" }108cumulus-relay-chain-inprocess-interface = "0.4.0"109cumulus-relay-chain-interface = "0.4.0"110cumulus-relay-chain-minimal-node = "0.4.0"111frame-executive = { default-features = false, version = "25.0.0" }112frame-support = { default-features = false, version = "25.0.0" }113frame-system = { default-features = false, version = "25.0.0" }114frame-system-rpc-runtime-api = { default-features = false, version = "23.0.0" }115pallet-aura = { default-features = false, version = "24.0.0" }116pallet-authorship = { default-features = false, version = "25.0.0" }117pallet-balances = { default-features = false, version = "25.0.0" }118pallet-collective = { default-features = false, version = "25.0.0" }119pallet-democracy = { default-features = false, version = "25.0.0" }120pallet-membership = { default-features = false, version = "25.0.0" }121pallet-preimage = { default-features = false, version = "25.0.0" }122pallet-ranked-collective = { default-features = false, version = "25.0.0" }123pallet-referenda = { default-features = false, version = "25.0.0" }124pallet-scheduler = { default-features = false, version = "26.0.0" }125pallet-session = { default-features = false, version = "25.0.0" }126pallet-state-trie-migration = { default-features = false, version = "26.0.0" }127pallet-sudo = { default-features = false, version = "25.0.0" }128pallet-timestamp = { default-features = false, version = "24.0.0" }129pallet-transaction-payment = { default-features = false, version = "25.0.0" }130pallet-transaction-payment-rpc = "27.0.0"131pallet-transaction-payment-rpc-runtime-api = { default-features = false, version = "25.0.0" }132pallet-treasury = { default-features = false, version = "24.0.0" }133pallet-utility = { default-features = false, version = "25.0.0" }134pallet-xcm = { default-features = false, version = "4.0.0" }135parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false }136polkadot-cli = "4.0.0"137polkadot-parachain-primitives = { default-features = false, version = "3.0.0" }138polkadot-primitives = "4.0.0"139polkadot-runtime-common = { default-features = false, version = "4.0.0" }140polkadot-service = "4.0.0"141sc-basic-authorship = "0.31.0"142sc-chain-spec = "24.0.0"143sc-cli = "0.33.0"144sc-client-api = "25.0.0"145sc-consensus = "0.30.0"146sc-consensus-manual-seal = "0.32.0"147sc-executor = "0.29.0"148sc-network = "0.31.0"149sc-network-sync = "0.30.0"150sc-rpc = "26.0.0"151sc-rpc-api = "0.30.0"152sc-service = "0.32.0"153sc-sysinfo = "24.0.0"154sc-telemetry = "12.0.0"155sc-tracing = "25.0.0"156sc-transaction-pool = "25.0.0"157scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }158sp-api = { default-features = false, version = "23.0.0" }159sp-arithmetic = { default-features = false, version = "20.0.0" }160sp-block-builder = { default-features = false, version = "23.0.0" }161sp-blockchain = "25.0.0"162sp-consensus-aura = { default-features = false, version = "0.29.0" }163sp-core = { default-features = false, version = "25.0.0" }164sp-externalities = "0.23.0"165sp-inherents = { default-features = false, version = "23.0.0" }166sp-io = { default-features = false, version = "27.0.0" }167sp-keystore = "0.31.0"168sp-offchain = { default-features = false, version = "23.0.0" }169sp-runtime = { default-features = false, version = "28.0.0" }170sp-session = { default-features = false, version = "24.0.0" }171sp-staking = { default-features = false, version = "23.0.0" }172sp-state-machine = "0.32.0"173sp-std = { default-features = false, version = "12.0.0" }174sp-storage = { default-features = false, version = "17.0.0" }175sp-timestamp = "23.0.0"176sp-tracing = "14.0.0"177sp-transaction-pool = { default-features = false, version = "23.0.0" }178sp-trie = { default-features = false, version = "26.0.0" }179sp-version = { default-features = false, version = "26.0.0" }180sp-weights = { default-features = false, version = "24.0.0" }181staging-parachain-info = { default-features = false, version = "0.4.0" }182staging-xcm = { default-features = false, version = "4.0.0" }183staging-xcm-builder = { default-features = false, version = "4.0.0" }184staging-xcm-executor = { default-features = false, version = "4.0.0" }185substrate-frame-rpc-system = "25.0.0"186substrate-prometheus-endpoint = "0.16.0"187188# Parity: Build utils189substrate-build-script-utils = "9.0.0"190substrate-wasm-builder = "14.0.0"191192# Parity: Benchmarking193frame-benchmarking = { default-features = false, version = "25.0.0" }194frame-benchmarking-cli = "29.0.0"195frame-system-benchmarking = { default-features = false, version = "25.0.0" }196197# Parity: Try Runtime198frame-try-runtime = { default-features = false, version = "0.31.0" }199try-runtime-cli = "0.35.0"200201# ORML202orml-traits = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }203orml-vesting = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }204orml-xcm-support = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }205orml-xtokens = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "unique-polkadot-v1.3.0" }206207# Other208derivative = { version = "2.2.0", features = ["use_core"] }209ethereum = { version = "0.14.0", default-features = false }210evm-core = { git = "https://github.com/rust-blockchain/evm", rev = "b7b82c7e1fc57b7449d6dfa6826600de37cc1e65", default-features = false }211hex-literal = "0.4.1"212impl-trait-for-tuples = "0.2.2"213jsonrpsee = { version = "0.16.3", features = ["macros", "server"] }214log = { version = "0.4.20", default-features = false }215num_enum = { version = "0.7.0", default-features = false }216serde = { default-features = false, features = ['derive'], version = "1.0.188" }217smallvec = "1.11.1"