mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
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>
35 lines
744 B
TOML
35 lines
744 B
TOML
[package]
|
|
name = "snowbridge-system-runtime-api"
|
|
description = "Snowbridge System Runtime API"
|
|
version = "0.13.0"
|
|
authors = ["Snowfork <contact@snowfork.com>"]
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
license = "Apache-2.0"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[package.metadata.polkadot-sdk]
|
|
exclude-from-umbrella = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
snowbridge-core.workspace = true
|
|
sp-api.workspace = true
|
|
sp-std.workspace = true
|
|
xcm.workspace = true
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"snowbridge-core/std",
|
|
"sp-api/std",
|
|
"sp-std/std",
|
|
"xcm/std",
|
|
]
|