Skip to content
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

Use glob path instead of defining each package #483

Closed
AZProductions opened this issue Aug 9, 2024 · 0 comments · May be fixed by #492
Closed

Use glob path instead of defining each package #483

AZProductions opened this issue Aug 9, 2024 · 0 comments · May be fixed by #492
Assignees
Labels
rust Pull requests that update Rust code
Milestone

Comments

@AZProductions
Copy link
Contributor

Instead of defining each package individually, we should rather be using a glob path. Currently we are manually defining each package in ./Cargo.toml.

[workspace]
members = [
    "crates/toybox_c1200",
    ...
]
resolver = "2"

By using a glob path, we can cut down on the lines code needed.

[workspace]
members = ["crates/*"]
@AZProductions AZProductions added this to the 1.0 milestone Aug 9, 2024
@AZProductions AZProductions self-assigned this Aug 9, 2024
@AZProductions AZProductions mentioned this issue Aug 9, 2024
3 tasks
@AZProductions AZProductions added the rust Pull requests that update Rust code label Aug 16, 2024
@AZProductions AZProductions linked a pull request Aug 16, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant