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"
|
2022-05-04 20:57:07 +02:00
|
|
|
version = "0.1.0"
|
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/mir-protocol/plonky2"
|
|
|
|
|
keywords = ["EVM", "STARK", "Ethereum"]
|
|
|
|
|
categories = ["cryptography"]
|
2022-05-04 20:57:07 +02:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = "1.0.40"
|
2022-11-16 14:23:15 -08:00
|
|
|
blake2 = "0.10.5"
|
2022-12-13 10:29:03 -08:00
|
|
|
env_logger = "0.10.0"
|
2023-03-27 17:30:11 -06:00
|
|
|
eth_trie_utils = "0.5.0"
|
2022-09-29 17:24:23 -06:00
|
|
|
ethereum-types = "0.14.0"
|
2022-06-27 18:08:03 -07:00
|
|
|
hex = { version = "0.4.3", optional = true }
|
2022-07-20 00:10:52 -07:00
|
|
|
hex-literal = "0.3.4"
|
2022-06-23 18:33:34 -07:00
|
|
|
itertools = "0.10.3"
|
2022-10-16 10:11:45 -07:00
|
|
|
keccak-hash = "0.10.0"
|
2022-05-04 20:57:07 +02:00
|
|
|
log = "0.4.14"
|
2023-01-30 08:51:33 -08:00
|
|
|
plonky2_maybe_rayon = "0.1.0"
|
2022-11-03 11:41:12 -07:00
|
|
|
num = "0.4.0"
|
2023-02-10 16:31:35 -08:00
|
|
|
num-bigint = "0.4.3"
|
2022-07-14 11:31:47 -07:00
|
|
|
once_cell = "1.13.0"
|
2022-06-20 20:32:29 -07:00
|
|
|
pest = "2.1.3"
|
|
|
|
|
pest_derive = "2.1.0"
|
2023-02-25 08:55:55 -08:00
|
|
|
plonky2 = { version = "0.1.2", default-features = false, features = ["timing"] }
|
2023-01-30 08:51:33 -08:00
|
|
|
plonky2_util = { version = "0.1.0" }
|
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"
|
2022-07-04 18:10:03 -07:00
|
|
|
rlp = "0.5.1"
|
2022-10-04 15:12:44 -07:00
|
|
|
rlp-derive = "0.1.0"
|
2022-09-19 11:05:48 -06:00
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
2022-11-15 01:51:29 -05:00
|
|
|
static_assertions = "1.1.0"
|
2022-08-24 16:06:50 -07:00
|
|
|
tiny-keccak = "2.0.2"
|
2022-06-27 18:08:03 -07:00
|
|
|
|
2022-12-04 10:15:28 -08:00
|
|
|
[target.'cfg(not(target_env = "msvc"))'.dependencies]
|
|
|
|
|
jemallocator = "0.5.0"
|
|
|
|
|
|
2022-07-04 18:10:03 -07:00
|
|
|
[dev-dependencies]
|
2022-11-15 01:51:29 -05:00
|
|
|
criterion = "0.4.0"
|
2022-07-14 14:26:01 +02:00
|
|
|
hex = "0.4.3"
|
2022-12-12 18:23:22 -07:00
|
|
|
ripemd = "0.1.3"
|
|
|
|
|
sha2 = "0.10.6"
|
2022-07-04 18:10:03 -07:00
|
|
|
|
2022-06-27 18:08:03 -07:00
|
|
|
[features]
|
2022-07-24 17:47:14 -04:00
|
|
|
default = ["parallel"]
|
2022-06-27 18:08:03 -07:00
|
|
|
asmtools = ["hex"]
|
2023-01-30 08:51:33 -08:00
|
|
|
parallel = ["plonky2/parallel", "plonky2_maybe_rayon/parallel"]
|
2022-06-27 18:08:03 -07:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "assemble"
|
|
|
|
|
required-features = ["asmtools"]
|
2022-08-04 17:14:07 -05:00
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
|
name = "stack_manipulation"
|
|
|
|
|
harness = false
|