datahaven/operator/pallets/system
Gonza Montiel e16420f266
feat(ci): add script to sort cargo deps (#62)
This PR introduces a new script in `./operator/scripts` that allows us
to sort cargo dependencies alphabetically, it is based in my
[gist](https://gist.github.com/gonzamontiel/b4594c62685175f99760442ad2e2dd98).

I modified it so we can run it both in `--fix` and `--check` modes.

To sort a single cargo file, you can do:

```
./scripts/sort-cargo-deps.sh  /path/to/Cargo.toml
```

Btw, make sure you are in the operator folder and you have exec
permissions:

```
cd operator
chmod +x ./scripts/sort-cargo-deps.sh
```
But what I recommend is that you format every Cargo.toml just in case,
like this:
```
find . -name "Cargo.toml" -exec ./scripts/sort-cargo-deps.sh {} \;
```

The CI will run 

```
find . -name "Cargo.toml" -exec ./scripts/sort-cargo-deps.sh {} check \;
```

---------

Co-authored-by: Facundo Farall <37149322+ffarall@users.noreply.github.com>
2025-05-06 17:22:01 +00:00
..
runtime-api feat(ci): add script to sort cargo deps (#62) 2025-05-06 17:22:01 +00:00
src feat: Add Snowbridge ethereum system v2 pallet (#57) 2025-04-30 17:58:45 +00:00
Cargo.toml feat(ci): add script to sort cargo deps (#62) 2025-05-06 17:22:01 +00:00
README.md feat: Add Snowbridge ethereum system v2 pallet (#57) 2025-04-30 17:58:45 +00:00

Ethereum System

Contains management functions to manage functions on Ethereum. For example, creating agents and channels.