-
Notifications
You must be signed in to change notification settings - Fork 199
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
feat(nargo)!: Require package type
be specified in Nargo.toml
#2134
Merged
Conversation
This file contains 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
TomAFrench
reviewed
Aug 3, 2023
kobyhallx
reviewed
Aug 3, 2023
kobyhallx
reviewed
Aug 3, 2023
kobyhallx
reviewed
Aug 3, 2023
kobyhallx
reviewed
Aug 3, 2023
This was referenced Aug 3, 2023
phated
force-pushed
the
phated/nargo-crate-type
branch
from
August 3, 2023 21:20
9a9d9f8
to
f3a1ca4
Compare
This has been rebased on #2157 to show the usage of the trait. |
TomAFrench
previously approved these changes
Aug 4, 2023
Co-authored-by: Koby Hall <102518238+kobyhallx@users.noreply.github.com>
Co-authored-by: Tom French <15848336+TomAFrench@users.noreply.github.com>
phated
force-pushed
the
phated/nargo-crate-type
branch
from
August 4, 2023 15:10
02cf701
to
35b4cdb
Compare
TomAFrench
reviewed
Aug 4, 2023
TomAFrench
approved these changes
Aug 4, 2023
TomAFrench
added a commit
that referenced
this pull request
Aug 7, 2023
* master: chore: Remove symlink and dummy config file (#2200) fix: Fix an ICE when reassigning a mutable lambda variable to one with a different environment type (#2172) feat: Only create new witnesses for distinctiveness when duplicates exist (#2191) chore: Use helper functions for getting values of `AcirVar`s (#2194) feat: Add support for slices of structs and nested slices in brillig (#2084) feat: Perform sorting of constant arrays at compile time (#2195) chore: Improve unary error (#2199) chore: separate integration test cases into directories based on expected result (#2198) chore: remove stale comment (#2197) feat(nargo): Support custom entry points specified in TOML (#2158) fix(nargo): Indicate which TOML file is missing package name (#2177) fix: remove duplicated `name` option in `nargo new` (#2183) chore: add documentation to the `nargo lsp` command (#2169) feat(nargo)!: Require package `type` be specified in Nargo.toml (#2134) fix(nargo): Make dependencies section optional in TOML (#2161) chore: Do not create new memory block when not needed (#2142) fix: fix an ICE happening when we call a closure result from if/else (#2146) chore: remove unnecessary cloning of package dependencies (#2175)
TomAFrench
added a commit
that referenced
this pull request
Aug 7, 2023
* master: (35 commits) feat: Issue warning for signed integers (#2185) chore: Add `noir_wasm` testing workflow (#1921) chore: Remove symlink and dummy config file (#2200) fix: Fix an ICE when reassigning a mutable lambda variable to one with a different environment type (#2172) feat: Only create new witnesses for distinctiveness when duplicates exist (#2191) chore: Use helper functions for getting values of `AcirVar`s (#2194) feat: Add support for slices of structs and nested slices in brillig (#2084) feat: Perform sorting of constant arrays at compile time (#2195) chore: Improve unary error (#2199) chore: separate integration test cases into directories based on expected result (#2198) chore: remove stale comment (#2197) feat(nargo): Support custom entry points specified in TOML (#2158) fix(nargo): Indicate which TOML file is missing package name (#2177) fix: remove duplicated `name` option in `nargo new` (#2183) chore: add documentation to the `nargo lsp` command (#2169) feat(nargo)!: Require package `type` be specified in Nargo.toml (#2134) fix(nargo): Make dependencies section optional in TOML (#2161) chore: Do not create new memory block when not needed (#2142) fix: fix an ICE happening when we call a closure result from if/else (#2146) chore: remove unnecessary cloning of package dependencies (#2175) ...
cruzdanilo
added a commit
to cruzdanilo/noir-merkle-root
that referenced
this pull request
Oct 3, 2023
cruzdanilo
added a commit
to cruzdanilo/noir-merkle-root
that referenced
this pull request
Oct 3, 2023
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.
Description
Problem*
Resolves #2073
Summary*
This adds the
type
field to the Nargo.toml file, which is required. We use this to determine what the default entry point file should be but it also opens up the ability to allow custom paths (as per #2076) because we'll know what package type is represented by the custom path.As a matter of cleanup and separation of concerns, this also moves the
CrateType
into Nargo asPackageType
and adds some helpful error messages if a project is configured incorrectly (such as a missing main function when runningnargo check
against a binary package). These changes enable us to add acontracts
package type for #2075Since we want to generate library and binary crates, this adds
--lib
and--bin
to thenargo new
andnargo init
commands to generate an appropriate project.Documentation
This PR requires documentation updates when merged.
The required
type
field needs to be documented when we document the Nargo.toml file and we need to add the new flags fornew
andinit
commands.Additional Context
PR Checklist*
cargo fmt
on default settings.