forked from nexus-xyz/nexus-zkvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workspace tooling overhaul (nexus-xyz#54)
* introduce config crate * dev tools crate * improve logging * fix clippy * add doc comments * change log target * update lock file * improve comments * error source * remove merkle memory cli parameter * remove usage of k from cli
- Loading branch information
Showing
39 changed files
with
1,469 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
target | ||
|
||
### next line: for us Vim users ;-) | ||
# editors | ||
.*.swp | ||
|
||
### next line: for our public-parameters files | ||
*/nexus-public.zst | ||
.config.env |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ members = [ | |
"riscv", | ||
"vm", | ||
"tools", | ||
"tools/tools-dev", | ||
"config", | ||
"prover", | ||
"network", | ||
"supernova", | ||
|
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "nexus-config" | ||
authors = { workspace = true } | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
homepage = { workspace = true } | ||
repository = { workspace = true } | ||
publish = { workspace = true } | ||
keywords = { workspace = true } | ||
categories = { workspace = true } | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["derive"] } | ||
config = { version = "0.13.4", default-features = false } | ||
dotenvy = { version = "0.15.7" } | ||
|
||
clap = { workspace = true, optional = true } | ||
|
||
[features] | ||
clap_derive = ["clap"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[network.api] | ||
http_url = "127.0.0.1" | ||
http_port = 8080 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[vm] | ||
k = 1 # number of NexusVM instructions proved per Nova folding step. | ||
nova_impl = "par" # IVC implementation to be used, should be one of "seq" (sequential), "par" (parallel). |
Oops, something went wrong.