mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
0edab31776
* Copy Uniques into Nfts * Connect new pallet * Update weights * Nfts: Multiple approvals (#12178) * multiple approvals * clear * tests & clean up * fix in logic & fmt * fix benchmarks * deadline * test deadline * current_block + deadline * update ApprovedTransfer event * benchmark * docs * Update frame/nfts/src/lib.rs Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com> * fmt fix * Update frame/nfts/src/lib.rs Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com> * update tests * anyone can cancel * Update frame/nfts/src/tests.rs Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com> * fmt * fix logic * unnecessary line * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Update frame/nfts/src/lib.rs * Update lib.rs * fmt * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * fmt * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * suggestion * new line * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts Co-authored-by: Jegor Sidorenko <5252494+jsidorenko@users.noreply.github.com> Co-authored-by: command-bot <> Co-authored-by: Squirrel <gilescope@gmail.com> * Fixes * cargo fmt * Fixes * Fixes * Fix CI * Nfts: Fix Auto-Increment (#12223) * commit * passing benchmarks * clean up * sync * runtime implementation * fix * fmt * fix benchmark * cfg * remove try-increment-id * remove unused error * impl Incrementable for unsigned types * clean up * fix in tests * not needed anymore * Use OptionQuery Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> * Rename Origin to RuntimeOrigin * [Uniques V2] Tips (#12168) * Allow to add tips when buying an NFT * Chore * Rework tips feature * Add weights + benchmarks * Convert tuple to struct * Fix benchmark * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Update frame/nfts/src/benchmarking.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix benchmarks * Revert the bounded_vec![] approach * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts Co-authored-by: command-bot <> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * [Uniques V2] Atomic NFTs swap (#12285) * Atomic NFTs swap * Fmt * Fix benchmark * Rename swap -> atomic_swap * Update target balance * Rollback * Fix * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Make desired item optional * Apply suggestions * Update frame/nfts/src/features/atomic_swap.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Rename fields * Optimisation * Add a comment * deadline -> maybe_deadline * Add docs * Change comments * Add price direction field * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Wrap price and direction * Fix benchmarks * Use ensure! instead of if {} * Make duration param mandatory and limit it to MaxDeadlineDuration * Make the code safer * Fix clippy * Chore * Remove unused vars * try * try 2 * try 3 Co-authored-by: command-bot <> Co-authored-by: Squirrel <gilescope@gmail.com> * [Uniques V2] Feature flags (#12367) * Basics * WIP: change the data format * Refactor * Remove redundant new() method * Rename settings * Enable tests * Chore * Change params order * Delete the config on collection removal * Chore * Remove redundant system features * Rename force_item_status to force_collection_status * Update node runtime * Chore * Remove thaw_collection * Chore * Connect collection.is_frozen to config * Allow to lock the collection in a new way * Move free_holding into settings * Connect collection's metadata locker to feature flags * DRY * Chore * Connect pallet level feature flags * Prepare tests for the new changes * Implement Item settings * Allow to lock the metadata or attributes of an item * Common -> Settings * Extract settings related code to a separate file * Move feature flag checks inside the do_* methods * Split settings.rs into parts * Extract repeated code into macro * Extract macros into their own file * Chore * Fix traits * Fix traits * Test SystemFeatures * Fix benchmarks * Add missing benchmark * Fix node/runtime/lib.rs * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Keep item's config on burn if it's not empty * Fix the merge artifacts * Fmt * Add SystemFeature::NoSwaps check * Rename SystemFeatures to PalletFeatures * Rename errors * Add docs * Change error message * Rework pallet features * Move macros * Change comments * Fmt * Refactor Incrementable * Use pub(crate) for do_* functions * Update comments * Refactor freeze and lock functions * Rework Collection config and Item confg api * Chore * Make clippy happy * Chore * Update comment * RequiredDeposit => DepositRequired * Address comments Co-authored-by: command-bot <> * [Uniques V2] Refactor roles (#12437) * Basics * WIP: change the data format * Refactor * Remove redundant new() method * Rename settings * Enable tests * Chore * Change params order * Delete the config on collection removal * Chore * Remove redundant system features * Rename force_item_status to force_collection_status * Update node runtime * Chore * Remove thaw_collection * Chore * Connect collection.is_frozen to config * Allow to lock the collection in a new way * Move free_holding into settings * Connect collection's metadata locker to feature flags * DRY * Chore * Connect pallet level feature flags * Prepare tests for the new changes * Implement Item settings * Allow to lock the metadata or attributes of an item * Common -> Settings * Extract settings related code to a separate file * Move feature flag checks inside the do_* methods * Split settings.rs into parts * Extract repeated code into macro * Extract macros into their own file * Chore * Fix traits * Fix traits * Test SystemFeatures * Fix benchmarks * Add missing benchmark * Fix node/runtime/lib.rs * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Keep item's config on burn if it's not empty * Fix the merge artifacts * Fmt * Add SystemFeature::NoSwaps check * Refactor roles structure * Rename SystemFeatures to PalletFeatures * Rename errors * Add docs * Change error message * Rework pallet features * Move macros * Change comments * Fmt * Refactor Incrementable * Use pub(crate) for do_* functions * Update comments * Refactor freeze and lock functions * Rework Collection config and Item confg api * Chore * Make clippy happy * Chore * Fix artifacts * Address comments * Further refactoring * Add comments * Add tests for group_roles_by_account() * Update frame/nfts/src/impl_nonfungibles.rs * Add test * Replace Itertools group_by with a custom implementation * ItemsNotTransferable => ItemsNonTransferable * Update frame/nfts/src/features/roles.rs Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Address PR comments * Add missed comment Co-authored-by: command-bot <> Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> * Fix copy * Remove storage_prefix * Remove transactional * Update comment * [Uniques V2] Minting options (#12483) * Basics * WIP: change the data format * Refactor * Remove redundant new() method * Rename settings * Enable tests * Chore * Change params order * Delete the config on collection removal * Chore * Remove redundant system features * Rename force_item_status to force_collection_status * Update node runtime * Chore * Remove thaw_collection * Chore * Connect collection.is_frozen to config * Allow to lock the collection in a new way * Move free_holding into settings * Connect collection's metadata locker to feature flags * DRY * Chore * Connect pallet level feature flags * Prepare tests for the new changes * Implement Item settings * Allow to lock the metadata or attributes of an item * Common -> Settings * Extract settings related code to a separate file * Move feature flag checks inside the do_* methods * Split settings.rs into parts * Extract repeated code into macro * Extract macros into their own file * Chore * Fix traits * Fix traits * Test SystemFeatures * Fix benchmarks * Add missing benchmark * Fix node/runtime/lib.rs * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Keep item's config on burn if it's not empty * Fix the merge artifacts * Fmt * Add SystemFeature::NoSwaps check * Rename SystemFeatures to PalletFeatures * Rename errors * Add docs * Change error message * Change the format of CollectionConfig to store more data * Move max supply to the CollectionConfig and allow to change it * Remove ItemConfig from the mint() function and use the one set in mint settings * Add different mint options * Allow to change the mint settings * Add a force_mint() method * Check mint params * Some optimisations * Cover with tests * Remove merge artifacts * Chore * Use the new has_role() method * Rework item deposits * More tests * Refactoring * Address comments * Refactor lock_collection() * Update frame/nfts/src/types.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/types.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Private => Issuer * Add more tests * Fix benchmarks * Add benchmarks for new methods * [Uniques v2] Refactoring (#12570) * Move do_set_price() and do_buy_item() to buy_sell.rs * Move approvals to feature file * Move metadata to feature files * Move the rest of methods to feature files * Remove artifacts * Split force_collection_status into 2 methods * Fix benchmarks * Fix benchmarks * Update deps Co-authored-by: command-bot <> Co-authored-by: Squirrel <gilescope@gmail.com> * [Uniques V2] Smart attributes (#12702) * Basics * WIP: change the data format * Refactor * Remove redundant new() method * Rename settings * Enable tests * Chore * Change params order * Delete the config on collection removal * Chore * Remove redundant system features * Rename force_item_status to force_collection_status * Update node runtime * Chore * Remove thaw_collection * Chore * Connect collection.is_frozen to config * Allow to lock the collection in a new way * Move free_holding into settings * Connect collection's metadata locker to feature flags * DRY * Chore * Connect pallet level feature flags * Prepare tests for the new changes * Implement Item settings * Allow to lock the metadata or attributes of an item * Common -> Settings * Extract settings related code to a separate file * Move feature flag checks inside the do_* methods * Split settings.rs into parts * Extract repeated code into macro * Extract macros into their own file * Chore * Fix traits * Fix traits * Test SystemFeatures * Fix benchmarks * Add missing benchmark * Fix node/runtime/lib.rs * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Keep item's config on burn if it's not empty * Fix the merge artifacts * Fmt * Add SystemFeature::NoSwaps check * Rename SystemFeatures to PalletFeatures * Rename errors * Add docs * Change error message * Change the format of CollectionConfig to store more data * Move max supply to the CollectionConfig and allow to change it * Remove ItemConfig from the mint() function and use the one set in mint settings * Add different mint options * Allow to change the mint settings * Add a force_mint() method * Check mint params * Some optimisations * Cover with tests * Remove merge artifacts * Chore * Use the new has_role() method * Rework item deposits * More tests * Refactoring * Address comments * Refactor lock_collection() * Update frame/nfts/src/types.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/types.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Private => Issuer * Add more tests * Fix benchmarks * Add benchmarks for new methods * [Uniques v2] Refactoring (#12570) * Move do_set_price() and do_buy_item() to buy_sell.rs * Move approvals to feature file * Move metadata to feature files * Move the rest of methods to feature files * Remove artifacts * Smart attributes * Split force_collection_status into 2 methods * Fix benchmarks * Fix benchmarks * Update deps * Fix merge artifact * Weights + benchmarks + docs * Change params order * Chore * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Update docs * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * Add PalletId * Chore * Add tests * More tests * Add doc * Update errors snapshots * Ensure we track the owner_deposit field correctly Co-authored-by: command-bot <> Co-authored-by: Squirrel <gilescope@gmail.com> * [Uniques V2] Final improvements (#12736) * Use KeyPrefixIterator instead of Box * Change create_collection() * Restrict from claiming NFTs twice * Update Readme * Remove dead code * Refactoring * Update readme * Fix clippy * Update frame/nfts/src/lib.rs Co-authored-by: Squirrel <gilescope@gmail.com> * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Update docs * Typo * Fix benchmarks * Add more docs * DepositRequired setting should affect only the attributes within the CollectionOwner namespace * [NFTs] Implement missed methods to set the attributes from other pallets (#12919) * Implement missed methods to set the attributes from other pallets * Revert snapshots * Update snapshot * Update snapshot * Revert snapshot changes * Update snapshots * Yet another snapshot update.. * Update frame/support/src/traits/tokens/nonfungible_v2.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/support/src/traits/tokens/nonfungible_v2.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/support/src/traits/tokens/nonfungible_v2.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/support/src/traits/tokens/nonfungibles_v2.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/support/src/traits/tokens/nonfungible_v2.rs * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/support/src/traits/tokens/nonfungibles_v2.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/lib.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Address comments * [NFTs] Add the new `owner` param to mint() method (#12997) * Add the new `owner` param to mint() method * Fmt * Address comments * ".git/.scripts/bench-bot.sh" pallet dev pallet_nfts * Update frame/nfts/src/common_functions.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/types.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/types.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/types.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/types.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Update frame/nfts/src/types.rs Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> * Add call indexes * Update snapshots Co-authored-by: Sergej Sakac <73715684+Szegoo@users.noreply.github.com> Co-authored-by: Squirrel <gilescope@gmail.com> Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Muharem Ismailov <ismailov.m.h@gmail.com> Co-authored-by: command-bot <> Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com>
324 lines
8.9 KiB
TOML
324 lines
8.9 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
|
|
members = [
|
|
"bin/node-template/node",
|
|
"bin/node-template/pallets/template",
|
|
"bin/node-template/runtime",
|
|
"bin/node/bench",
|
|
"bin/node/cli",
|
|
"bin/node/executor",
|
|
"bin/node/inspect",
|
|
"bin/node/primitives",
|
|
"bin/node/rpc",
|
|
"bin/node/runtime",
|
|
"bin/node/testing",
|
|
"bin/utils/chain-spec-builder",
|
|
"bin/utils/subkey",
|
|
"client/api",
|
|
"client/authority-discovery",
|
|
"client/basic-authorship",
|
|
"client/beefy",
|
|
"client/beefy/rpc",
|
|
"client/block-builder",
|
|
"client/chain-spec",
|
|
"client/chain-spec/derive",
|
|
"client/cli",
|
|
"client/consensus/aura",
|
|
"client/consensus/babe",
|
|
"client/consensus/babe/rpc",
|
|
"client/consensus/common",
|
|
"client/consensus/epochs",
|
|
"client/consensus/manual-seal",
|
|
"client/consensus/pow",
|
|
"client/consensus/slots",
|
|
"client/consensus/uncles",
|
|
"client/db",
|
|
"client/executor",
|
|
"client/executor/common",
|
|
"client/executor/runtime-test",
|
|
"client/executor/wasmi",
|
|
"client/executor/wasmtime",
|
|
"client/finality-grandpa",
|
|
"client/finality-grandpa/rpc",
|
|
"client/informant",
|
|
"client/keystore",
|
|
"client/merkle-mountain-range",
|
|
"client/merkle-mountain-range/rpc",
|
|
"client/network",
|
|
"client/network/transactions",
|
|
"client/network-gossip",
|
|
"client/network/bitswap",
|
|
"client/network/common",
|
|
"client/network/light",
|
|
"client/network/sync",
|
|
"client/network/test",
|
|
"client/offchain",
|
|
"client/peerset",
|
|
"client/allocator",
|
|
"client/proposer-metrics",
|
|
"client/rpc",
|
|
"client/rpc-api",
|
|
"client/rpc-servers",
|
|
"client/rpc-spec-v2",
|
|
"client/service",
|
|
"client/service/test",
|
|
"client/state-db",
|
|
"client/sysinfo",
|
|
"client/sync-state-rpc",
|
|
"client/telemetry",
|
|
"client/tracing",
|
|
"client/tracing/proc-macro",
|
|
"client/transaction-pool",
|
|
"client/transaction-pool/api",
|
|
"client/utils",
|
|
"frame/alliance",
|
|
"frame/assets",
|
|
"frame/atomic-swap",
|
|
"frame/aura",
|
|
"frame/authority-discovery",
|
|
"frame/authorship",
|
|
"frame/babe",
|
|
"frame/bags-list",
|
|
"frame/bags-list/fuzzer",
|
|
"frame/bags-list/remote-tests",
|
|
"frame/balances",
|
|
"frame/beefy",
|
|
"frame/beefy-mmr",
|
|
"frame/beefy-mmr/primitives",
|
|
"frame/benchmarking",
|
|
"frame/bounties",
|
|
"frame/child-bounties",
|
|
"frame/collective",
|
|
"frame/contracts",
|
|
"frame/contracts/proc-macro",
|
|
"frame/contracts/primitives",
|
|
"frame/conviction-voting",
|
|
"frame/democracy",
|
|
"frame/fast-unstake",
|
|
"frame/try-runtime",
|
|
"frame/elections-phragmen",
|
|
"frame/election-provider-multi-phase",
|
|
"frame/election-provider-support",
|
|
"frame/election-provider-support/benchmarking",
|
|
"frame/election-provider-support/solution-type",
|
|
"frame/election-provider-support/solution-type/fuzzer",
|
|
"frame/examples/basic",
|
|
"frame/examples/offchain-worker",
|
|
"frame/executive",
|
|
"frame/nis",
|
|
"frame/grandpa",
|
|
"frame/identity",
|
|
"frame/im-online",
|
|
"frame/indices",
|
|
"frame/lottery",
|
|
"frame/membership",
|
|
"frame/merkle-mountain-range",
|
|
"frame/multisig",
|
|
"frame/nicks",
|
|
"frame/node-authorization",
|
|
"frame/offences",
|
|
"frame/offences/benchmarking",
|
|
"frame/preimage",
|
|
"frame/proxy",
|
|
"frame/message-queue",
|
|
"frame/nfts",
|
|
"frame/nomination-pools",
|
|
"frame/nomination-pools/fuzzer",
|
|
"frame/nomination-pools/benchmarking",
|
|
"frame/nomination-pools/test-staking",
|
|
"frame/nomination-pools/runtime-api",
|
|
"frame/randomness-collective-flip",
|
|
"frame/ranked-collective",
|
|
"frame/recovery",
|
|
"frame/referenda",
|
|
"frame/remark",
|
|
"frame/scheduler",
|
|
"frame/scored-pool",
|
|
"frame/session",
|
|
"frame/session/benchmarking",
|
|
"frame/society",
|
|
"frame/staking",
|
|
"frame/staking/reward-curve",
|
|
"frame/staking/reward-fn",
|
|
"frame/state-trie-migration",
|
|
"frame/sudo",
|
|
"frame/root-offences",
|
|
"frame/root-testing",
|
|
"frame/support",
|
|
"frame/support/procedural",
|
|
"frame/support/procedural/tools",
|
|
"frame/support/procedural/tools/derive",
|
|
"frame/support/test",
|
|
"frame/support/test/compile_pass",
|
|
"frame/support/test/pallet",
|
|
"frame/system",
|
|
"frame/system/benchmarking",
|
|
"frame/system/rpc/runtime-api",
|
|
"frame/timestamp",
|
|
"frame/transaction-payment",
|
|
"frame/transaction-payment/asset-tx-payment",
|
|
"frame/transaction-payment/rpc",
|
|
"frame/transaction-payment/rpc/runtime-api",
|
|
"frame/transaction-storage",
|
|
"frame/treasury",
|
|
"frame/tips",
|
|
"frame/uniques",
|
|
"frame/utility",
|
|
"frame/vesting",
|
|
"frame/whitelist",
|
|
"primitives/api",
|
|
"primitives/api/proc-macro",
|
|
"primitives/api/test",
|
|
"primitives/application-crypto",
|
|
"primitives/application-crypto/test",
|
|
"primitives/arithmetic",
|
|
"primitives/arithmetic/fuzzer",
|
|
"primitives/authority-discovery",
|
|
"primitives/authorship",
|
|
"primitives/beefy",
|
|
"primitives/block-builder",
|
|
"primitives/blockchain",
|
|
"primitives/consensus/aura",
|
|
"primitives/consensus/babe",
|
|
"primitives/consensus/common",
|
|
"primitives/consensus/pow",
|
|
"primitives/consensus/slots",
|
|
"primitives/consensus/vrf",
|
|
"primitives/core",
|
|
"primitives/core/hashing",
|
|
"primitives/core/hashing/proc-macro",
|
|
"primitives/database",
|
|
"primitives/debug-derive",
|
|
"primitives/externalities",
|
|
"primitives/finality-grandpa",
|
|
"primitives/inherents",
|
|
"primitives/io",
|
|
"primitives/keyring",
|
|
"primitives/keystore",
|
|
"primitives/maybe-compressed-blob",
|
|
"primitives/merkle-mountain-range",
|
|
"primitives/npos-elections",
|
|
"primitives/npos-elections/fuzzer",
|
|
"primitives/offchain",
|
|
"primitives/panic-handler",
|
|
"primitives/rpc",
|
|
"primitives/runtime",
|
|
"primitives/runtime-interface",
|
|
"primitives/runtime-interface/proc-macro",
|
|
"primitives/runtime-interface/test",
|
|
"primitives/runtime-interface/test-wasm",
|
|
"primitives/runtime-interface/test-wasm-deprecated",
|
|
"primitives/serializer",
|
|
"primitives/session",
|
|
"primitives/staking",
|
|
"primitives/state-machine",
|
|
"primitives/std",
|
|
"primitives/storage",
|
|
"primitives/test-primitives",
|
|
"primitives/timestamp",
|
|
"primitives/tracing",
|
|
"primitives/transaction-pool",
|
|
"primitives/transaction-storage-proof",
|
|
"primitives/trie",
|
|
"primitives/version",
|
|
"primitives/version/proc-macro",
|
|
"primitives/wasm-interface",
|
|
"primitives/weights",
|
|
"test-utils",
|
|
"test-utils/client",
|
|
"test-utils/derive",
|
|
"test-utils/runtime",
|
|
"test-utils/runtime/client",
|
|
"test-utils/runtime/transaction-pool",
|
|
"test-utils/test-crate",
|
|
"utils/build-script-utils",
|
|
"utils/fork-tree",
|
|
"utils/frame/benchmarking-cli",
|
|
"utils/frame/remote-externalities",
|
|
"utils/frame/frame-utilities-cli",
|
|
"utils/frame/try-runtime/cli",
|
|
"utils/frame/rpc/state-trie-migration-rpc",
|
|
"utils/frame/rpc/support",
|
|
"utils/frame/rpc/system",
|
|
"utils/frame/generate-bags",
|
|
"utils/frame/generate-bags/node-runtime",
|
|
"utils/frame/rpc/client",
|
|
"utils/prometheus",
|
|
"utils/wasm-builder",
|
|
]
|
|
|
|
# The list of dependencies below (which can be both direct and indirect dependencies) are crates
|
|
# that are suspected to be CPU-intensive, and that are unlikely to require debugging (as some of
|
|
# their debug info might be missing) or to require to be frequently recompiled. We compile these
|
|
# dependencies with `opt-level=3` even in "dev" mode in order to make "dev" mode more usable.
|
|
# The majority of these crates are cryptographic libraries.
|
|
#
|
|
# Note that this does **not** affect crates that depend on Substrate. In other words, if you add
|
|
# a dependency on Substrate, you have to copy-paste this list in your own `Cargo.toml` (assuming
|
|
# that you want the same list). This list is only relevant when running `cargo build` from within
|
|
# the Substrate workspace.
|
|
#
|
|
# If you see an error mentioning "profile package spec ... did not match any packages", it
|
|
# probably concerns this list.
|
|
#
|
|
# This list is ordered alphabetically.
|
|
[profile.dev.package]
|
|
blake2 = { opt-level = 3 }
|
|
blake2b_simd = { opt-level = 3 }
|
|
chacha20poly1305 = { opt-level = 3 }
|
|
cranelift-codegen = { opt-level = 3 }
|
|
cranelift-wasm = { opt-level = 3 }
|
|
crc32fast = { opt-level = 3 }
|
|
crossbeam-deque = { opt-level = 3 }
|
|
crypto-mac = { opt-level = 3 }
|
|
curve25519-dalek = { opt-level = 3 }
|
|
ed25519-zebra = { opt-level = 3 }
|
|
flate2 = { opt-level = 3 }
|
|
futures-channel = { opt-level = 3 }
|
|
hashbrown = { opt-level = 3 }
|
|
hash-db = { opt-level = 3 }
|
|
hmac = { opt-level = 3 }
|
|
httparse = { opt-level = 3 }
|
|
integer-sqrt = { opt-level = 3 }
|
|
k256 = { opt-level = 3 }
|
|
keccak = { opt-level = 3 }
|
|
libm = { opt-level = 3 }
|
|
librocksdb-sys = { opt-level = 3 }
|
|
libsecp256k1 = { opt-level = 3 }
|
|
libz-sys = { opt-level = 3 }
|
|
mio = { opt-level = 3 }
|
|
nalgebra = { opt-level = 3 }
|
|
num-bigint = { opt-level = 3 }
|
|
parking_lot = { opt-level = 3 }
|
|
parking_lot_core = { opt-level = 3 }
|
|
percent-encoding = { opt-level = 3 }
|
|
primitive-types = { opt-level = 3 }
|
|
ring = { opt-level = 3 }
|
|
rustls = { opt-level = 3 }
|
|
secp256k1 = { opt-level = 3 }
|
|
sha2 = { opt-level = 3 }
|
|
sha3 = { opt-level = 3 }
|
|
smallvec = { opt-level = 3 }
|
|
snow = { opt-level = 3 }
|
|
twox-hash = { opt-level = 3 }
|
|
uint = { opt-level = 3 }
|
|
wasmi = { opt-level = 3 }
|
|
x25519-dalek = { opt-level = 3 }
|
|
yamux = { opt-level = 3 }
|
|
zeroize = { opt-level = 3 }
|
|
|
|
[profile.release]
|
|
# Substrate runtime requires unwinding.
|
|
panic = "unwind"
|
|
|
|
[profile.production]
|
|
inherits = "release"
|
|
|
|
# Sacrifice compile speed for execution speed by using optimization flags:
|
|
|
|
# https://doc.rust-lang.org/rustc/linker-plugin-lto.html
|
|
lto = "fat"
|
|
# https://doc.rust-lang.org/rustc/codegen-options/index.html#codegen-units
|
|
codegen-units = 1
|