Skip to content

Commit d22ff45

Browse files
authored
Fix source dependencies preventing release (#7012)
## Description The sway-features Cargo.toml had dependencies not aligned with the workspace which prevented the publish action to run properly. ## Checklist - [ ] I have linked to any relevant issues. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have updated the documentation where relevant (API docs, the reference, and the Sway book). - [ ] If my change requires substantial documentation changes, I have [requested support from the DevRel team](https://github.com/FuelLabs/devrel-requests/issues/new/choose) - [ ] I have added tests that prove my fix is effective or that my feature works. - [ ] I have added (or requested a maintainer to add) the necessary `Breaking*` or `New Feature` labels where relevant. - [ ] I have done my best to ensure that my PR adheres to [the Fuel Labs Code Review Standards](https://github.com/FuelLabs/rfcs/blob/master/text/code-standards/external-contributors.md). - [ ] I have requested a review from the relevant team or maintainers.
1 parent 254ee9c commit d22ff45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sway-features/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ repository.workspace = true
1111
[dependencies]
1212
clap = { workspace = true, features = ["derive"] }
1313
paste.workspace = true
14-
sway-error = { path = "../sway-error" }
15-
sway-types = { path = "../sway-types" }
14+
sway-error.workspace = true
15+
sway-types.workspace = true

0 commit comments

Comments
 (0)