diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-01-29 17:02:17 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-01-29 17:02:17 +0200 |
| commit | 142f5b90e5e04bcdebc9d631427b3f009113fe7a (patch) | |
| tree | 0d08cc7a1ac804040a7a67f8fc79a0ee325d8922 /guests | |
| parent | 3144cbc9e534ab78aa18ee47212fbeaef3da04cd (diff) | |
| download | zkVMs-benchmarks-142f5b90e5e04bcdebc9d631427b3f009113fe7a.tar zkVMs-benchmarks-142f5b90e5e04bcdebc9d631427b3f009113fe7a.tar.gz zkVMs-benchmarks-142f5b90e5e04bcdebc9d631427b3f009113fe7a.zip | |
fix(graph_coloring): Rename rust package and add lockfile
Diffstat (limited to 'guests')
| -rw-r--r-- | guests/graph_coloring/Cargo.lock | 14 | ||||
| -rw-r--r-- | guests/graph_coloring/Cargo.toml | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/guests/graph_coloring/Cargo.lock b/guests/graph_coloring/Cargo.lock new file mode 100644 index 0000000..092d421 --- /dev/null +++ b/guests/graph_coloring/Cargo.lock @@ -0,0 +1,14 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "graph_coloring" +version = "0.1.0" +dependencies = [ + "guests_macro", +] + +[[package]] +name = "guests_macro" +version = "0.1.0" diff --git a/guests/graph_coloring/Cargo.toml b/guests/graph_coloring/Cargo.toml index a0cbd83..b097d33 100644 --- a/guests/graph_coloring/Cargo.toml +++ b/guests/graph_coloring/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "zkp" +name = "graph_coloring" version = "0.1.0" edition = "2021" |
