mirror of
https://github.com/matter-labs/teepot.git
synced 2025-07-21 07:03:56 +02:00
Merge pull request #333 from matter-labs/feature/update-dependencies
chore(deps): Update all dependencies to latest
This commit is contained in:
commit
8d965aa388
6 changed files with 304 additions and 315 deletions
574
Cargo.lock
generated
574
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
15
Cargo.toml
15
Cargo.toml
|
@ -17,6 +17,7 @@ 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"
|
||||
asn1_der = { version = "0.7", default-features = false, features = ["native_types"] }
|
||||
|
@ -25,14 +26,20 @@ awc = { version = "3.5", 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"
|
||||
chrono = "0.4.40"
|
||||
clap = { version = "4.5", features = ["std", "derive", "env", "error-context", "help", "usage", "wrap_help"], default-features = false }
|
||||
config = { version = "0.15.8", default-features = false, features = ["yaml", "json", "toml", "async"] }
|
||||
const-oid = { version = "0.9.6", default-features = false }
|
||||
dcap-qvl = "0.2.3"
|
||||
enumset = { version = "1.1", features = ["serde"] }
|
||||
futures = "0.3.31"
|
||||
futures-core = { version = "0.3.30", default-features = false }
|
||||
getrandom = { version = "0.3.1", features = ["std"] }
|
||||
gpt = "4.0.0"
|
||||
hex = { version = "0.4.3", features = ["std"], default-features = false }
|
||||
intel-dcap-api = { path = "crates/intel-dcap-api" }
|
||||
jsonrpsee-types = "0.25.1"
|
||||
mockito = "1.4"
|
||||
num-integer = "0.1.46"
|
||||
num-traits = "0.2.18"
|
||||
opentelemetry = { version = "0.30", features = ["default", "logs"] }
|
||||
|
@ -42,6 +49,7 @@ opentelemetry-semantic-conventions = { version = "0.30", features = ["semconv_ex
|
|||
opentelemetry_sdk = { version = "0.30", features = ["tokio", "rt-tokio"] }
|
||||
p256 = "0.13.2"
|
||||
pe-sign = "0.1.10"
|
||||
percent-encoding = "2.3.1"
|
||||
pgp = { version = "0.16", default-features = false }
|
||||
pkcs8 = { version = "0.10" }
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
|
@ -51,15 +59,18 @@ secp256k1 = { version = "0.31", features = ["rand", "global-context"] }
|
|||
serde = { version = "1", features = ["derive", "rc"] }
|
||||
serde_json = "1"
|
||||
serde_with = { version = "3.8", features = ["base64", "hex"] }
|
||||
serde_yaml = "0.9.33"
|
||||
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" }
|
||||
teepot-tee-quote-verification-rs = { path = "crates/teepot-tee-quote-verification-rs" }
|
||||
teepot-vault = { path = "crates/teepot-vault" }
|
||||
testaso = "0.1.0"
|
||||
thiserror = "2.0.11"
|
||||
tokio = { version = "1", features = ["sync", "macros", "rt-multi-thread", "fs", "time", "signal"] }
|
||||
tokio-util = "0.7.14"
|
||||
tracing = "0.1"
|
||||
tracing-actix-web = "0.7"
|
||||
tracing-futures = { version = "0.2.5", features = ["std"] }
|
||||
|
@ -67,5 +78,9 @@ tracing-log = "0.2"
|
|||
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "ansi"] }
|
||||
tracing-test = { version = "0.2.5", features = ["no-env-filter"] }
|
||||
url = "2.5.2"
|
||||
webpki-roots = "1.0.0"
|
||||
x509-cert = { version = "0.2", features = ["builder", "signature", "default"] }
|
||||
zeroize = { version = "1.7.0", features = ["serde"] }
|
||||
zksync_basic_types = "28.6.0-non-semver-compat"
|
||||
zksync_types = "28.6.0-non-semver-compat"
|
||||
zksync_web3_decl = "28.6.0-non-semver-compat"
|
||||
|
|
|
@ -12,20 +12,20 @@ bytes.workspace = true
|
|||
clap.workspace = true
|
||||
enumset.workspace = true
|
||||
hex.workspace = true
|
||||
jsonrpsee-types = "0.25.1"
|
||||
jsonrpsee-types.workspace = true
|
||||
reqwest.workspace = true
|
||||
secp256k1.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
serde_with = { workspace = true, features = ["hex"] }
|
||||
serde_yaml = "0.9.33"
|
||||
serde_yaml.workspace = true
|
||||
teepot.workspace = true
|
||||
thiserror.workspace = true
|
||||
tokio.workspace = true
|
||||
tokio-util = "0.7.14"
|
||||
tokio-util.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
url.workspace = true
|
||||
zksync_basic_types = "27.0.0-non-semver-compat"
|
||||
zksync_types = "27.0.0-non-semver-compat"
|
||||
zksync_web3_decl = "27.0.0-non-semver-compat"
|
||||
zksync_basic_types.workspace = true
|
||||
zksync_types.workspace = true
|
||||
zksync_web3_decl.workspace = true
|
||||
|
|
|
@ -12,7 +12,7 @@ categories = ["api-bindings", "cryptography", "authentication"]
|
|||
|
||||
[dependencies]
|
||||
base64.workspace = true
|
||||
percent-encoding = "2.3.1"
|
||||
percent-encoding.workspace = true
|
||||
reqwest = { workspace = true, features = ["json"] }
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
|
@ -23,7 +23,7 @@ url.workspace = true
|
|||
[dev-dependencies]
|
||||
base64.workspace = true
|
||||
hex.workspace = true
|
||||
mockito = "1.4"
|
||||
mockito.workspace = true
|
||||
x509-cert.workspace = true
|
||||
|
||||
[[example]]
|
||||
|
|
|
@ -8,14 +8,14 @@ authors.workspace = true
|
|||
repository.workspace = true
|
||||
|
||||
[dependencies]
|
||||
actix-http = "3"
|
||||
actix-http.workspace = true
|
||||
actix-web.workspace = true
|
||||
anyhow.workspace = true
|
||||
awc.workspace = true
|
||||
bytes.workspace = true
|
||||
clap.workspace = true
|
||||
const-oid.workspace = true
|
||||
futures-core = { version = "0.3.30", features = ["alloc"], default-features = false }
|
||||
futures-core = { workspace = true, features = ["alloc"] }
|
||||
hex.workspace = true
|
||||
pgp.workspace = true
|
||||
rustls.workspace = true
|
||||
|
@ -26,7 +26,7 @@ sha2.workspace = true
|
|||
teepot.workspace = true
|
||||
thiserror.workspace = true
|
||||
tracing.workspace = true
|
||||
webpki-roots = "1.0.0"
|
||||
webpki-roots.workspace = true
|
||||
x509-cert.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
|
@ -11,8 +11,8 @@ authors.workspace = true
|
|||
repository.workspace = true
|
||||
|
||||
[target.'cfg(not(all(target_os = "linux", target_arch = "x86_64")))'.dependencies]
|
||||
dcap-qvl = "0.2.3"
|
||||
chrono = "0.4.40"
|
||||
dcap-qvl.workspace = true
|
||||
chrono.workspace = true
|
||||
bytes.workspace = true
|
||||
|
||||
[features]
|
||||
|
@ -28,7 +28,7 @@ clap.workspace = true
|
|||
config.workspace = true
|
||||
const-oid.workspace = true
|
||||
enumset.workspace = true
|
||||
futures = "0.3.31"
|
||||
futures.workspace = true
|
||||
getrandom.workspace = true
|
||||
hex.workspace = true
|
||||
num-integer.workspace = true
|
||||
|
@ -49,7 +49,7 @@ serde_json.workspace = true
|
|||
sha2.workspace = true
|
||||
sha3.workspace = true
|
||||
signature.workspace = true
|
||||
teepot-tee-quote-verification-rs = { path = "../teepot-tee-quote-verification-rs", optional = true }
|
||||
teepot-tee-quote-verification-rs = { workspace = true, optional = true }
|
||||
thiserror.workspace = true
|
||||
tokio.workspace = true
|
||||
tracing.workspace = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue