Skip to content
Snippets Groups Projects
Unverified Commit 9117f70f authored by Florian Franzen's avatar Florian Franzen Committed by GitHub
Browse files

cumulus-client: use only valid syntax in Cargo.toml (#7455)

# Description

This PR ensure that only valid syntax is uses inside the `Cargo.toml`. 

## Integration

Not sure if worth backporting. Came across this when trying to package
`try-runtime-cli`.

## Review Notes

It should be obvious that this is not valid syntax. I am not able to add
labels and doubt this requires a prdoc.
parent c1f4703f
No related merge requests found
Pipeline #515387 waiting for manual action with stages
in 33 minutes
......@@ -48,8 +48,8 @@ rand = { workspace = true, default-features = true }
schnellru = { workspace = true }
serde = { workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }
smoldot = { default_features = false, features = ["std"], workspace = true }
smoldot-light = { default_features = false, features = ["std"], workspace = true }
smoldot = { default-features = false, features = ["std"], workspace = true }
smoldot-light = { default-features = false, features = ["std"], workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true, default-features = true }
url = { workspace = true }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment