git.delta.rocks / unique-network / refs/commits / 83d67e5fa458

difftreelog

fix Rust Analyzer for common mod (#966)

Daniel Shiposha2023-07-10parent: #d8a735e.patch.diff
in: master
* fix: add common link

* fix: add windows note

* fix: rename common-link to runtime_common

7 files changed

modifiedREADME.mddiffbeforeafterboth
37Building Unique chain requires special versions of Rust and toolchain. We don't use the most recent versions of everything37Building Unique chain requires special versions of Rust and toolchain. We don't use the most recent versions of everything
38so that we can keep the builds stable.38so that we can keep the builds stable.
3939
40*Windows note: We do not provide support for Windows systems and don't test the Unique chain on them.
41Nonetheless, the Unique chain node might work on Windows. To build it on Windows, you need to enable symlink support in Git:*
42```
43git config --global core.symlinks true
44```
45
401. Install Rust:461. Install Rust:
4147
42```bash48```bash
modifiedruntime/opal/src/lib.rsdiffbeforeafterboth
3636
37use ::xcm::latest::NetworkId;37use ::xcm::latest::NetworkId;
3838
39#[path = "../../common/mod.rs"]
40mod runtime_common;39mod runtime_common;
4140
42pub mod xcm_barrier;41pub mod xcm_barrier;
addedruntime/opal/src/runtime_commondiffbeforeafterboth

no changes

modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
3636
37use ::xcm::latest::NetworkId;37use ::xcm::latest::NetworkId;
3838
39#[path = "../../common/mod.rs"]
40mod runtime_common;39mod runtime_common;
4140
42pub mod xcm_barrier;41pub mod xcm_barrier;
addedruntime/quartz/src/runtime_commondiffbeforeafterboth

no changes

modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
3636
37use ::xcm::latest::NetworkId;37use ::xcm::latest::NetworkId;
3838
39#[path = "../../common/mod.rs"]
40mod runtime_common;39mod runtime_common;
4140
42pub mod xcm_barrier;41pub mod xcm_barrier;
addedruntime/unique/src/runtime_commondiffbeforeafterboth

no changes