Skip to content

ci: add versions to cargo workspace #6588

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,34 @@ repository = "https://github.com/FuelLabs/sway"
# Internal dependencies in order to propagate `workspace.version`
#

forc = { path = "forc/" }
forc-pkg = { path = "forc-pkg/" }
forc-test = { path = "forc-test/" }
forc-tracing = { path = "forc-tracing/" }
forc-util = { path = "forc-util/" }
forc = { path = "forc/", version = "0.64.0" }
forc-pkg = { path = "forc-pkg/", version = "0.64.0" }
forc-test = { path = "forc-test/", version = "0.64.0" }
forc-tracing = { path = "forc-tracing/", version = "0.64.0" }
forc-util = { path = "forc-util/", version = "0.64.0" }

# Forc plugins
forc-plugins = { path = "forc-plugins/" }
forc-client = { path = "forc-plugins/forc-client/" }
forc-crypto = { path = "forc-plugins/forc-crypto/" }
forc-debug = { path = "forc-plugins/forc-debug/" }
forc-doc = { path = "forc-plugins/forc-doc/" }
forc-fmt = { path = "forc-plugins/forc-fmt/" }
forc-lsp = { path = "forc-plugins/forc-lsp/" }
forc-tx = { path = "forc-plugins/forc-tx/" }
forc-plugins = { path = "forc-plugins/", version = "0.64.0" }
forc-client = { path = "forc-plugins/forc-client/", version = "0.64.0" }
forc-crypto = { path = "forc-plugins/forc-crypto/", version = "0.64.0" }
forc-debug = { path = "forc-plugins/forc-debug/", version = "0.64.0" }
forc-doc = { path = "forc-plugins/forc-doc/", version = "0.64.0" }
forc-fmt = { path = "forc-plugins/forc-fmt/", version = "0.64.0" }
forc-lsp = { path = "forc-plugins/forc-lsp/", version = "0.64.0" }
forc-tx = { path = "forc-plugins/forc-tx/", version = "0.64.0" }

sway-ast = { path = "sway-ast/" }
sway-core = { path = "sway-core/" }
sway-error = { path = "sway-error/" }
sway-lsp = { path = "sway-lsp/" }
sway-parse = { path = "sway-parse/" }
sway-types = { path = "sway-types/" }
sway-utils = { path = "sway-utils/" }
swayfmt = { path = "swayfmt/" }
sway-ast = { path = "sway-ast/", version = "0.64.0" }
sway-core = { path = "sway-core/", version = "0.64.0" }
sway-error = { path = "sway-error/", version = "0.64.0" }
sway-lsp = { path = "sway-lsp/", version = "0.64.0" }
sway-parse = { path = "sway-parse/", version = "0.64.0" }
sway-types = { path = "sway-types/", version = "0.64.0" }
sway-utils = { path = "sway-utils/", version = "0.64.0" }
swayfmt = { path = "swayfmt/", version = "0.64.0" }

# Sway IR
sway-ir = { path = "sway-ir/" }
sway-ir-macros = { path = "sway-ir/sway-ir-macros" }
sway-ir = { path = "sway-ir/", version = "0.64.0" }
sway-ir-macros = { path = "sway-ir/sway-ir-macros", version = "0.64.0" }

#
# External Fuel dependencies
Expand Down
Loading