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

This PR is part of the effort to implement on-chain TEE proof verification. This PR goes hand in hand with https://github.com/matter-labs/zksync-era/pull/3414.
56 lines
1.4 KiB
TOML
56 lines
1.4 KiB
TOML
[package]
|
|
name = "teepot"
|
|
description = "TEE secret manager"
|
|
# no MIT license, because of copied code from:
|
|
# * https://github.com/enarx/enarx
|
|
# * https://github.com/enarx/sgx
|
|
license = "Apache-2.0"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
actix-http.workspace = true
|
|
actix-web.workspace = true
|
|
anyhow.workspace = true
|
|
awc.workspace = true
|
|
bytemuck.workspace = true
|
|
bytes.workspace = true
|
|
clap.workspace = true
|
|
const-oid.workspace = true
|
|
enumset.workspace = true
|
|
futures-core.workspace = true
|
|
getrandom.workspace = true
|
|
hex.workspace = true
|
|
intel-tee-quote-verification-rs.workspace = true
|
|
num-integer.workspace = true
|
|
num-traits.workspace = true
|
|
p256.workspace = true
|
|
pgp.workspace = true
|
|
pkcs8.workspace = true
|
|
rand.workspace = true
|
|
rsa.workspace = true
|
|
rustls.workspace = true
|
|
secp256k1 = { workspace = true, features = ["recovery"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_with.workspace = true
|
|
sha2.workspace = true
|
|
sha3.workspace = true
|
|
signature.workspace = true
|
|
tdx-attest-rs.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
tracing-log.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
webpki-roots.workspace = true
|
|
x509-cert.workspace = true
|
|
zeroize.workspace = true
|
|
|
|
[dev-dependencies]
|
|
base64.workspace = true
|
|
testaso.workspace = true
|
|
tokio.workspace = true
|
|
tracing-test.workspace = true
|
|
zksync_basic_types.workspace = true
|