Conform to Cargo's conventional file layout#275
Merged
sunfishcode merged 1 commit intobytecodealliance:masterfrom Aug 13, 2019
Merged
Conform to Cargo's conventional file layout#275sunfishcode merged 1 commit intobytecodealliance:masterfrom
sunfishcode merged 1 commit intobytecodealliance:masterfrom
Conversation
Move `src/*.rs` to `src/bin/*.rs` which are automatically inferred as binaries and move `src/utils.rs` to `src/lib.rs` which is compiled as a reusable library for each of the binaries we're building.
Member
|
Cool, +1 for doing things the conventional way :-). |
dhil
added a commit
to dhil/wasmtime
that referenced
this pull request
Jan 20, 2025
avanhatt
pushed a commit
to wellesley-prog-sys/wasmtime
that referenced
this pull request
Apr 9, 2025
Support solver selection on a per-expansion basis. The runner now supports "solver rules" consisting of an expansion predicate and a solver backend. These can be provided on the command line with e.g. `--solver-rule z3=tag:float`. It also sets up default selection rules with an explicit tag, so `solver_z3` and `solver_cvc5`. Updates bytecodealliance#275
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move
src/*.rstosrc/bin/*.rswhich are automatically inferred asbinaries and move
src/utils.rstosrc/lib.rswhich is compiled as areusable library for each of the binaries we're building.