From f06083c0c78368e79cb0c3a924b797d9c9c31846 Mon Sep 17 00:00:00 2001 From: hu55a1n1 Date: Tue, 21 May 2024 03:46:21 -0700 Subject: [PATCH] Repo reorg (#8) Move zk files into zk dir Add root level README.md Update README.md --- .gitignore | 2 ++ README.md | 5 +++-- demo/README.md | 1 + zk/README.md | 2 ++ {noir => zk/noir}/README.md | 0 {noir => zk/noir}/flowcheck/Nargo.toml | 0 {noir => zk/noir}/flowcheck/Prover.toml | 0 {noir => zk/noir}/flowcheck/src/main.nr | 0 {noir => zk/noir}/hashing/Nargo.toml | 0 {noir => zk/noir}/hashing/src/main.nr | 0 {noir => zk/noir}/proofofkey/Nargo.toml | 0 {noir => zk/noir}/proofofkey/src/main.nr | 0 {noir => zk/noir}/sortedlists/plot.py | 0 {noir => zk/noir}/sortedlists/run_benchmark.sh | 0 {noir => zk/noir}/sortedlists/src/main.nr | 0 {risczero => zk/risczero}/.gitignore | 0 {risczero => zk/risczero}/.vscode/settings.json | 0 {risczero => zk/risczero}/Cargo.toml | 0 {risczero => zk/risczero}/LICENSE | 0 {risczero => zk/risczero}/README.md | 0 {risczero => zk/risczero}/host/Cargo.toml | 0 {risczero => zk/risczero}/host/src/main.rs | 0 {risczero => zk/risczero}/methods/Cargo.toml | 0 {risczero => zk/risczero}/methods/build.rs | 0 {risczero => zk/risczero}/methods/guest/Cargo.toml | 0 {risczero => zk/risczero}/methods/guest/src/main.rs | 0 {risczero => zk/risczero}/methods/src/lib.rs | 0 {risczero => zk/risczero}/mtcs-core/Cargo.toml | 0 {risczero => zk/risczero}/mtcs-core/src/lib.rs | 0 {risczero => zk/risczero}/rust-toolchain | 0 30 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 demo/README.md create mode 100644 zk/README.md rename {noir => zk/noir}/README.md (100%) rename {noir => zk/noir}/flowcheck/Nargo.toml (100%) rename {noir => zk/noir}/flowcheck/Prover.toml (100%) rename {noir => zk/noir}/flowcheck/src/main.nr (100%) rename {noir => zk/noir}/hashing/Nargo.toml (100%) rename {noir => zk/noir}/hashing/src/main.nr (100%) rename {noir => zk/noir}/proofofkey/Nargo.toml (100%) rename {noir => zk/noir}/proofofkey/src/main.nr (100%) rename {noir => zk/noir}/sortedlists/plot.py (100%) rename {noir => zk/noir}/sortedlists/run_benchmark.sh (100%) rename {noir => zk/noir}/sortedlists/src/main.nr (100%) rename {risczero => zk/risczero}/.gitignore (100%) rename {risczero => zk/risczero}/.vscode/settings.json (100%) rename {risczero => zk/risczero}/Cargo.toml (100%) rename {risczero => zk/risczero}/LICENSE (100%) rename {risczero => zk/risczero}/README.md (100%) rename {risczero => zk/risczero}/host/Cargo.toml (100%) rename {risczero => zk/risczero}/host/src/main.rs (100%) rename {risczero => zk/risczero}/methods/Cargo.toml (100%) rename {risczero => zk/risczero}/methods/build.rs (100%) rename {risczero => zk/risczero}/methods/guest/Cargo.toml (100%) rename {risczero => zk/risczero}/methods/guest/src/main.rs (100%) rename {risczero => zk/risczero}/methods/src/lib.rs (100%) rename {risczero => zk/risczero}/mtcs-core/Cargo.toml (100%) rename {risczero => zk/risczero}/mtcs-core/src/lib.rs (100%) rename {risczero => zk/risczero}/rust-toolchain (100%) diff --git a/.gitignore b/.gitignore index 9b19c03..2742485 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.idea/ + # Generated by Cargo # will have compiled files and executables debug/ diff --git a/README.md b/README.md index baabcf3..8262fe9 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ -# zk-mtcs -MTCS experiments in zero-knowledge +# cycles-sandbox + +A playground for Cycles demos, experiments and prototypes. diff --git a/demo/README.md b/demo/README.md new file mode 100644 index 0000000..dc4a7c1 --- /dev/null +++ b/demo/README.md @@ -0,0 +1 @@ +# Demos and prototypes \ No newline at end of file diff --git a/zk/README.md b/zk/README.md new file mode 100644 index 0000000..baabcf3 --- /dev/null +++ b/zk/README.md @@ -0,0 +1,2 @@ +# zk-mtcs +MTCS experiments in zero-knowledge diff --git a/noir/README.md b/zk/noir/README.md similarity index 100% rename from noir/README.md rename to zk/noir/README.md diff --git a/noir/flowcheck/Nargo.toml b/zk/noir/flowcheck/Nargo.toml similarity index 100% rename from noir/flowcheck/Nargo.toml rename to zk/noir/flowcheck/Nargo.toml diff --git a/noir/flowcheck/Prover.toml b/zk/noir/flowcheck/Prover.toml similarity index 100% rename from noir/flowcheck/Prover.toml rename to zk/noir/flowcheck/Prover.toml diff --git a/noir/flowcheck/src/main.nr b/zk/noir/flowcheck/src/main.nr similarity index 100% rename from noir/flowcheck/src/main.nr rename to zk/noir/flowcheck/src/main.nr diff --git a/noir/hashing/Nargo.toml b/zk/noir/hashing/Nargo.toml similarity index 100% rename from noir/hashing/Nargo.toml rename to zk/noir/hashing/Nargo.toml diff --git a/noir/hashing/src/main.nr b/zk/noir/hashing/src/main.nr similarity index 100% rename from noir/hashing/src/main.nr rename to zk/noir/hashing/src/main.nr diff --git a/noir/proofofkey/Nargo.toml b/zk/noir/proofofkey/Nargo.toml similarity index 100% rename from noir/proofofkey/Nargo.toml rename to zk/noir/proofofkey/Nargo.toml diff --git a/noir/proofofkey/src/main.nr b/zk/noir/proofofkey/src/main.nr similarity index 100% rename from noir/proofofkey/src/main.nr rename to zk/noir/proofofkey/src/main.nr diff --git a/noir/sortedlists/plot.py b/zk/noir/sortedlists/plot.py similarity index 100% rename from noir/sortedlists/plot.py rename to zk/noir/sortedlists/plot.py diff --git a/noir/sortedlists/run_benchmark.sh b/zk/noir/sortedlists/run_benchmark.sh similarity index 100% rename from noir/sortedlists/run_benchmark.sh rename to zk/noir/sortedlists/run_benchmark.sh diff --git a/noir/sortedlists/src/main.nr b/zk/noir/sortedlists/src/main.nr similarity index 100% rename from noir/sortedlists/src/main.nr rename to zk/noir/sortedlists/src/main.nr diff --git a/risczero/.gitignore b/zk/risczero/.gitignore similarity index 100% rename from risczero/.gitignore rename to zk/risczero/.gitignore diff --git a/risczero/.vscode/settings.json b/zk/risczero/.vscode/settings.json similarity index 100% rename from risczero/.vscode/settings.json rename to zk/risczero/.vscode/settings.json diff --git a/risczero/Cargo.toml b/zk/risczero/Cargo.toml similarity index 100% rename from risczero/Cargo.toml rename to zk/risczero/Cargo.toml diff --git a/risczero/LICENSE b/zk/risczero/LICENSE similarity index 100% rename from risczero/LICENSE rename to zk/risczero/LICENSE diff --git a/risczero/README.md b/zk/risczero/README.md similarity index 100% rename from risczero/README.md rename to zk/risczero/README.md diff --git a/risczero/host/Cargo.toml b/zk/risczero/host/Cargo.toml similarity index 100% rename from risczero/host/Cargo.toml rename to zk/risczero/host/Cargo.toml diff --git a/risczero/host/src/main.rs b/zk/risczero/host/src/main.rs similarity index 100% rename from risczero/host/src/main.rs rename to zk/risczero/host/src/main.rs diff --git a/risczero/methods/Cargo.toml b/zk/risczero/methods/Cargo.toml similarity index 100% rename from risczero/methods/Cargo.toml rename to zk/risczero/methods/Cargo.toml diff --git a/risczero/methods/build.rs b/zk/risczero/methods/build.rs similarity index 100% rename from risczero/methods/build.rs rename to zk/risczero/methods/build.rs diff --git a/risczero/methods/guest/Cargo.toml b/zk/risczero/methods/guest/Cargo.toml similarity index 100% rename from risczero/methods/guest/Cargo.toml rename to zk/risczero/methods/guest/Cargo.toml diff --git a/risczero/methods/guest/src/main.rs b/zk/risczero/methods/guest/src/main.rs similarity index 100% rename from risczero/methods/guest/src/main.rs rename to zk/risczero/methods/guest/src/main.rs diff --git a/risczero/methods/src/lib.rs b/zk/risczero/methods/src/lib.rs similarity index 100% rename from risczero/methods/src/lib.rs rename to zk/risczero/methods/src/lib.rs diff --git a/risczero/mtcs-core/Cargo.toml b/zk/risczero/mtcs-core/Cargo.toml similarity index 100% rename from risczero/mtcs-core/Cargo.toml rename to zk/risczero/mtcs-core/Cargo.toml diff --git a/risczero/mtcs-core/src/lib.rs b/zk/risczero/mtcs-core/src/lib.rs similarity index 100% rename from risczero/mtcs-core/src/lib.rs rename to zk/risczero/mtcs-core/src/lib.rs diff --git a/risczero/rust-toolchain b/zk/risczero/rust-toolchain similarity index 100% rename from risczero/rust-toolchain rename to zk/risczero/rust-toolchain