mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 07:03: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.
70 lines
2.7 KiB
TOML
70 lines
2.7 KiB
TOML
[workspace]
|
|
members = ["crates/*", "bin/*"]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
|
|
[workspace.package]
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
authors = ["Harald Hoyer <hh@matterlabs.dev>"]
|
|
# rest of the workspace, if not specified in the package section
|
|
# has the standard Apache-2.0 OR MIT license
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/matter-labs/teepot"
|
|
homepage = "https://github.com/matter-labs/teepot"
|
|
|
|
[workspace.dependencies]
|
|
actix-http = "3"
|
|
actix-web = { version = "4.5", features = ["rustls-0_23"] }
|
|
anyhow = "1.0.82"
|
|
awc = { version = "3.4", features = ["rustls-0_23-webpki-roots"] }
|
|
base64 = "0.22.0"
|
|
bytemuck = { version = "1.15.0", features = ["derive", "min_const_generics", "extern_crate_std"] }
|
|
bytes = "1"
|
|
clap = { version = "4.5", features = ["std", "derive", "env", "error-context", "help", "usage", "wrap_help"], default-features = false }
|
|
const-oid = { version = "0.9", default-features = false }
|
|
ctrlc = "3.4"
|
|
enumset = { version = "1.1", features = ["serde"] }
|
|
futures-core = { version = "0.3.30", features = ["alloc"], default-features = false }
|
|
getrandom = "0.2.14"
|
|
gpt = "4.0.0"
|
|
hex = { version = "0.4.3", features = ["std"], default-features = false }
|
|
intel-tee-quote-verification-rs = { package = "teepot-tee-quote-verification-rs", path = "crates/teepot-tee-quote-verification-rs", version = "0.3.0" }
|
|
intel-tee-quote-verification-sys = { version = "0.2.1" }
|
|
jsonrpsee-types = { version = "0.23", default-features = false }
|
|
num-integer = "0.1.46"
|
|
num-traits = "0.2.18"
|
|
p256 = "0.13.2"
|
|
pe-sign = "0.1.10"
|
|
pgp = "0.14.2"
|
|
pkcs8 = { version = "0.10" }
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
rsa = { version = "0.9.6", features = ["sha2", "pem"] }
|
|
rustls = { version = "0.23.20" }
|
|
secp256k1 = { version = "0.29", features = ["rand-std", "global-context"] }
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_json = "1"
|
|
serde_with = { version = "3.8", features = ["base64", "hex"] }
|
|
sha2 = "0.10.8"
|
|
sha3 = "0.10.8"
|
|
signature = "2.2.0"
|
|
tdx-attest-rs = { version = "0.1.2", git = "https://github.com/intel/SGXDataCenterAttestationPrimitives.git", rev = "aa239d25a437a28f3f4de92c38f5b6809faac842" }
|
|
teepot = { path = "crates/teepot" }
|
|
testaso = "0.1.0"
|
|
thiserror = "1.0.59"
|
|
tokio = { version = "1", features = ["sync", "macros", "rt-multi-thread", "fs", "time"] }
|
|
tracing = "0.1"
|
|
tracing-actix-web = "0.7"
|
|
tracing-log = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
|
|
url = "2.5.2"
|
|
webpki-roots = "0.26.1"
|
|
x509-cert = { version = "0.2", features = ["builder", "signature"] }
|
|
zeroize = { version = "1.7.0", features = ["serde"] }
|
|
zksync_basic_types = "=0.1.0"
|
|
zksync_types = "=0.1.0"
|
|
zksync_web3_decl = "=0.1.0"
|