mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-03 14:23:07 +00:00
* Update prover logic * Add helper method for CTL data * Some cleanup * Update some methods * Fix * Some more fixes * More tweaks * Final * Leverage starky crate * Additional tweaks * Cleanup * More cleanup * Fix * Cleanup imports * Fix * Final tweaks * Cleanup and hide behind debug_assertions attribute * Clippy * Fix no-std * Make wasm compatible * Doc and remove todo * API cleanup and remove TODO * Add Debug impls * Add documentation for public items * Feature-gate alloc imports * Import method from starky instead * Add simple crate and module documentation * Apply comments * Add lib level documentation * Add test without lookups * Fix starks without logup * Cleanup * Some more cleanup * Fix get_challenges for non-lookup STARKs * Add additional config methods and tests * Apply comments * More comments
72 lines
1.8 KiB
TOML
72 lines
1.8 KiB
TOML
[package]
|
|
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 <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/0xPolygonZero/plonky2"
|
|
keywords = ["EVM", "STARK", "Ethereum"]
|
|
categories = ["cryptography"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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 = "7fc3c3f54b3cec9c6fc5ffc5230910bd1cb77f76" }
|
|
ethereum-types = "0.14.0"
|
|
hex = { version = "0.4.3", optional = true }
|
|
hex-literal = "0.4.1"
|
|
itertools = "0.11.0"
|
|
keccak-hash = "0.10.0"
|
|
log = "0.4.14"
|
|
plonky2_maybe_rayon = { path = "../maybe_rayon" }
|
|
num = "0.4.0"
|
|
num-bigint = "0.4.3"
|
|
once_cell = "1.13.0"
|
|
pest = "2.1.3"
|
|
pest_derive = "2.1.0"
|
|
plonky2 = { path = "../plonky2", features = ["timing"] }
|
|
plonky2_util = { path = "../util" }
|
|
starky = { path = "../starky" }
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
rlp = "0.5.1"
|
|
rlp-derive = "0.1.0"
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
static_assertions = "1.1.0"
|
|
hashbrown = { version = "0.14.0" }
|
|
tiny-keccak = "2.0.2"
|
|
serde_json = "1.0"
|
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
jemallocator = "0.5.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5.1"
|
|
hex = "0.4.3"
|
|
ripemd = "0.1.3"
|
|
sha2 = "0.10.6"
|
|
|
|
[features]
|
|
default = ["parallel"]
|
|
asmtools = ["hex"]
|
|
parallel = [
|
|
"plonky2/parallel",
|
|
"plonky2_maybe_rayon/parallel",
|
|
"starky/parallel"
|
|
]
|
|
|
|
[[bin]]
|
|
name = "assemble"
|
|
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"]
|