mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 23:23:57 +02:00

The zksync crates have recently been published on crates.io. Let's take advantage of them! Specifically, we are replacing alloy-primitives with zksync_basic_types to avoid the additional transitive dependencies introduced by alloy.
15 lines
336 B
TOML
15 lines
336 B
TOML
[package]
|
|
name = "verify-attestation"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
hex.workspace = true
|
|
secp256k1.workspace = true
|
|
teepot.workspace = true
|
|
zksync_basic_types.workspace = true
|