This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# What ❔ Prepares 0.1.0 release for library (already on crates.io)⚠️ renames the crate, as codegen crate name is already taken. ## Why ❔ <!-- Why are these changes done? What goal do they contribute to? What are the principles behind them? --> <!-- Example: PR templates ensure PR reviewers, observers, and future iterators are in context about the evolution of repos. --> ## Checklist <!-- Check your PR fulfills the following items. --> <!-- For draft PRs check the boxes as you complete them. --> - [ ] PR title corresponds to the body of PR (we generate changelog entries from PRs). - [ ] Tests for the changes have been added / updated. - [ ] Documentation comments have been added / updated. - [ ] Code has been formatted via `zk fmt` and `zk lint`.
- Loading branch information
Showing
4 changed files
with
13 additions
and
13 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
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
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
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,22 +1,21 @@ | ||
[package] | ||
name = "codegen" | ||
name = "zksync_solidity_vk_codegen" | ||
version = "0.1.0" | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "ZKsync solidity codegen for vks" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
handlebars = "*" | ||
serde = "*" | ||
serde_derive = "*" | ||
serde_json = "*" | ||
# franklin_crypto = {package = "franklin-crypto", path = "../../../matter-labs/franklin-crypto"} | ||
# rescue_poseidon = {package = "rescue_poseidon", path = "../../../matter-labs/rescue-poseidon"} | ||
handlebars = "3.5.5" | ||
serde = "1" | ||
serde_derive = "1" | ||
serde_json = "1" | ||
|
||
franklin-crypto = {features = ["plonk"], git = "https://github.com/matter-labs/franklin-crypto", branch = "dev"} | ||
rescue-poseidon = {package = "rescue_poseidon", git = "https://github.com/matter-labs/rescue-poseidon"} | ||
franklin-crypto = {features = ["plonk"], version = "=0.1.0" } | ||
rescue-poseidon = {package = "rescue_poseidon", version = "=0.4.1" } | ||
|
||
hex = "*" | ||
hex = "0.4.3" | ||
paste = "1.0" | ||
ethereum-types = "=0.14.1" |