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

workspace tooling overhaul #54

Merged
merged 13 commits into from
Feb 6, 2024
5 changes: 2 additions & 3 deletions .gitignore
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
198 changes: 190 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ members = [
"riscv",
"vm",
"tools",
"tools/tools-dev",
"config",
"prover",
"network",
"supernova",
Expand Down
Empty file added config/.rustfmt.toml
Empty file.
20 changes: 20 additions & 0 deletions config/Cargo.toml
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"]
3 changes: 3 additions & 0 deletions config/bases/network.toml
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
3 changes: 3 additions & 0 deletions config/bases/vm.toml
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).
Loading
Loading