forked from 0xPolygonZero/plonky2
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
334 changed files
with
13,981 additions
and
8,482 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" | ||
integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous"> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" | ||
integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" | ||
crossorigin="anonymous"></script> | ||
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" | ||
integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" | ||
crossorigin="anonymous"></script> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function () { | ||
renderMathInElement(document.body, { | ||
fleqn: false, | ||
macros: { | ||
"\\F": "\\mathbb{F}", | ||
"\\G": "\\mathbb{G}", | ||
"\\O": "\\mathcal{O}", | ||
"\\(": "\\left(", | ||
"\\)": "\\right)", | ||
"\\norm": "\\left\\vert #1 \\right\\vert", | ||
"\\set": "\\mathcal{ #1 }", | ||
}, | ||
delimiters: [ | ||
{ left: "$$", right: "$$", display: true }, | ||
{ left: "\\(", right: "\\)", display: false }, | ||
{ left: "$", right: "$", display: false }, | ||
{ left: "\\[", right: "\\]", display: true } | ||
] | ||
}); | ||
}); | ||
</script> |
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
Binary file not shown.
Submodule cryptography_cuda
updated
from 6782e9 to a7f86a
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 @@ | ||
../../.cargo/katex-header.html |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
name = "plonky2_evm" | ||
description = "Implementation of STARKs for the Ethereum Virtual Machine" | ||
version = "0.1.1" | ||
license = "MIT or Apache-2.0" | ||
authors = ["Daniel Lubarov <[email protected]>", "William Borgeaud <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/0xPolygonZero/plonky2" | ||
|
@@ -13,7 +14,7 @@ edition = "2021" | |
anyhow = "1.0.40" | ||
bytes = "1.4.0" | ||
env_logger = "0.10.0" | ||
eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" } | ||
eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "7fc3c3f54b3cec9c6fc5ffc5230910bd1cb77f76" } | ||
ethereum-types = "0.14.0" | ||
hex = { version = "0.4.3", optional = true } | ||
hex-literal = "0.4.1" | ||
|
@@ -59,3 +60,7 @@ required-features = ["asmtools"] | |
[[bench]] | ||
name = "stack_manipulation" | ||
harness = false | ||
|
||
# Display math equations properly in documentation | ||
[package.metadata.docs.rs] | ||
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"] |
Oops, something went wrong.