CensoredUsername / dynasm-rs

A dynasm-like tool for rust.
https://censoredusername.github.io/dynasm-rs/language/index.html
Mozilla Public License 2.0
705 stars 52 forks source link

add example crates in workspace.members #87

Closed choleraehyq closed 5 months ago

choleraehyq commented 6 months ago

add example crates into workspace members, or they cannot be by cargo build built directly. Error msg:

error: current package believes it's in a workspace when it's not:
current:   /Users/x/dynasm-rs/doc/examples/hello-world/Cargo.toml
workspace: /Users/x/dynasm-rs/Cargo.toml

this may be fixable by adding `doc/examples/hello-world` to the `workspace.members` array of the manifest located at: /Users/x/dynasm-rs/Cargo.toml
Alternatively, to keep it out of the workspace, add the package to the `workspace.exclude` array, or add an empty `[workspace]` table to the package's manifest.
choleraehyq commented 6 months ago

@CensoredUsername please take a look, thanks.

CensoredUsername commented 5 months ago

Thanks!