plonky2/evm/Cargo.toml

62 lines
1.6 KiB
TOML
Raw Normal View History

2022-05-04 20:57:07 +02:00
[package]
2022-05-18 10:32:14 -07:00
name = "plonky2_evm"
description = "Implementation of STARKs for the Ethereum Virtual Machine"
2023-07-31 16:31:22 -07:00
version = "0.1.1"
2023-01-30 08:51:33 -08:00
authors = ["Daniel Lubarov <daniel@lubarov.com>", "William Borgeaud <williamborgeaud@gmail.com>"]
readme = "README.md"
repository = "https://github.com/0xPolygonZero/plonky2"
2023-01-30 08:51:33 -08:00
keywords = ["EVM", "STARK", "Ethereum"]
categories = ["cryptography"]
2022-05-04 20:57:07 +02:00
edition = "2021"
[dependencies]
anyhow = "1.0.40"
bytes = "1.4.0"
2022-12-13 10:29:03 -08:00
env_logger = "0.10.0"
eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" }
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"
2022-05-04 20:57:07 +02:00
log = "0.4.14"
plonky2_maybe_rayon = { path = "../maybe_rayon" }
num = "0.4.0"
2023-02-10 16:31:35 -08:00
num-bigint = "0.4.3"
once_cell = "1.13.0"
pest = "2.1.3"
pest_derive = "2.1.0"
plonky2 = { path = "../plonky2", default-features = false, features = ["timing"] }
plonky2_util = { path = "../util" }
2022-05-12 20:38:11 +02:00
rand = "0.8.5"
2022-05-26 08:22:23 -07:00
rand_chacha = "0.3.1"
rlp = "0.5.1"
2022-10-04 15:12:44 -07:00
rlp-derive = "0.1.0"
serde = { version = "1.0.144", features = ["derive"] }
static_assertions = "1.1.0"
hashbrown = { version = "0.14.0" }
2022-08-24 16:06:50 -07:00
tiny-keccak = "2.0.2"
2023-04-15 10:45:56 -04:00
serde_json = "1.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"
[dev-dependencies]
criterion = "0.5.1"
2022-07-14 14:26:01 +02:00
hex = "0.4.3"
ripemd = "0.1.3"
sha2 = "0.10.6"
[features]
2022-07-24 17:47:14 -04:00
default = ["parallel"]
asmtools = ["hex"]
2023-01-30 08:51:33 -08:00
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
[[bin]]
name = "assemble"
required-features = ["asmtools"]
[[bench]]
name = "stack_manipulation"
harness = false