Lift all dependencies (the big one) (#4716)
After preparing in https://github.com/paritytech/polkadot-sdk/pull/4633,
we can lift also all internal dependencies up to the workspace.
This does not actually change anything, but uses `workspace = true` for
all dependencies. You can check it with:
```bash
git checkout -q $(git merge-base oty-lift-all-deps origin/master)
cargo tree -e features > master.out
git checkout -q oty-lift-all-deps
cargo tree -e features > new.out
diff master.out new.out
```
It did not yet lift 100% of dependencies, some inside of `target.*` or
some that had conflicting aliases introduced recently. But i will do
these together in a follow-up with CI checks.
Can be reproduced with [zepter](https://github.com/ggwpez/zepter/):
`zepter transpose d lift-to-workspace "regex:.*" --version-resolver
highest --skip-package "polkadot-sdk" --ignore-errors --fix`.
---------
Signed-off-by:
Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Showing
- .config/taplo.toml 7 additions, 0 deletions.config/taplo.toml
- .github/scripts/check-workspace.py 6 additions, 4 deletions.github/scripts/check-workspace.py
- .github/scripts/deny-git-deps.py 12 additions, 2 deletions.github/scripts/deny-git-deps.py
- Cargo.lock 2 additions, 15 deletionsCargo.lock
- Cargo.toml 765 additions, 2 deletionsCargo.toml
- bridges/bin/runtime-common/Cargo.toml 31 additions, 31 deletionsbridges/bin/runtime-common/Cargo.toml
- bridges/chains/chain-asset-hub-rococo/Cargo.toml 4 additions, 4 deletionsbridges/chains/chain-asset-hub-rococo/Cargo.toml
- bridges/chains/chain-asset-hub-westend/Cargo.toml 4 additions, 4 deletionsbridges/chains/chain-asset-hub-westend/Cargo.toml
- bridges/chains/chain-bridge-hub-cumulus/Cargo.toml 8 additions, 8 deletionsbridges/chains/chain-bridge-hub-cumulus/Cargo.toml
- bridges/chains/chain-bridge-hub-kusama/Cargo.toml 7 additions, 7 deletionsbridges/chains/chain-bridge-hub-kusama/Cargo.toml
- bridges/chains/chain-bridge-hub-polkadot/Cargo.toml 7 additions, 7 deletionsbridges/chains/chain-bridge-hub-polkadot/Cargo.toml
- bridges/chains/chain-bridge-hub-rococo/Cargo.toml 7 additions, 7 deletionsbridges/chains/chain-bridge-hub-rococo/Cargo.toml
- bridges/chains/chain-bridge-hub-westend/Cargo.toml 7 additions, 7 deletionsbridges/chains/chain-bridge-hub-westend/Cargo.toml
- bridges/chains/chain-kusama/Cargo.toml 6 additions, 6 deletionsbridges/chains/chain-kusama/Cargo.toml
- bridges/chains/chain-polkadot-bulletin/Cargo.toml 11 additions, 11 deletionsbridges/chains/chain-polkadot-bulletin/Cargo.toml
- bridges/chains/chain-polkadot/Cargo.toml 6 additions, 6 deletionsbridges/chains/chain-polkadot/Cargo.toml
- bridges/chains/chain-rococo/Cargo.toml 6 additions, 6 deletionsbridges/chains/chain-rococo/Cargo.toml
- bridges/chains/chain-westend/Cargo.toml 6 additions, 6 deletionsbridges/chains/chain-westend/Cargo.toml
- bridges/modules/beefy/Cargo.toml 16 additions, 16 deletionsbridges/modules/beefy/Cargo.toml
- bridges/modules/grandpa/Cargo.toml 15 additions, 15 deletionsbridges/modules/grandpa/Cargo.toml
Please register or sign in to comment