Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
530 changes: 291 additions & 239 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions keymanager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ base64 = "0.22.1"
futures = "0.3.31"
group = "0.13.0"
lazy_static = "1.3.0"
lru = "0.12.5"
rand = "0.8.5"
lru = "0.16.0"
rand = "0.9.2"
rustc-hex = "2.0.1"
sgx-isa = { version = "0.4.0", features = ["sgxstd"] }
sp800-185 = "0.2.0"
thiserror = "1.0"
thiserror = "2.0"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
tokio = { version = "1.44", features = ["rt"] }
tokio = { version = "1.47", features = ["rt"] }
zeroize = "1.7"
async-trait = "0.1.83"
p384 = { version = "0.13.0" }
Expand Down
6 changes: 3 additions & 3 deletions runtime-loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ authors = ["Oasis Protocol Foundation <info@oasisprotocol.org>"]
edition = "2018"

[dependencies]
clap = "4.5.20"
clap = "4.5.43"
anyhow = "1.0"
futures = { version = "0.3.31", features = ["compat", "io-compat"] }
tokio = { version = "1.44", features = ["full"] }
tokio = { version = "1.47", features = ["full"] }

[target.'cfg(target_os = "linux")'.dependencies]
aesm-client = { version = "0.6.0", features = ["sgxs"] }
enclave-runner = "0.7.0"
enclave-runner = "0.7.1"
sgxs-loaders = "0.5.0"

[[bin]]
Expand Down
32 changes: 16 additions & 16 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@ slog-json = "2.6.0"
slog-scope = "4.4.0"
slog-stdlog = "4.1.0"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["raw_value"] }
serde_json = { version = "1.0.142", features = ["raw_value"] }
lazy_static = "1.3.0"
crossbeam = "0.8.4"
byteorder = "1.4.3"
anyhow = "1.0"
thiserror = "1.0"
thiserror = "2.0"
sgx-isa = { version = "0.4.1", features = ["sgxstd"] }
mbedtls = { version = "0.12.3", features = ["x509", "chrono"] }
mbedtls = { version = "0.13.3", features = ["x509", "chrono"] }
yasna = { version = "0.5.0", features = ["num-bigint"] }
bincode = "1.3.3"
bitflags = "2.6.0"
snow = "0.9.6"
bincode = "2.0.1"
bitflags = "2.9.1"
snow = "0.10.0"
percent-encoding = "2.2.0"
chrono = "0.4.19"
base64 = "0.22.1"
rustc-hex = "2.0.1"
rand = "0.8.5"
rand = "0.9.2"
futures = "0.3.31"
tokio = { version = "1.44", features = [
tokio = { version = "1.47", features = [
"rt",
"rt-multi-thread",
"sync",
Expand All @@ -47,7 +47,7 @@ tendermint-light-client = { version = "0.40.3", features = [
tendermint-rpc = { version = "0.40.3", default-features = false }
curve25519-dalek = { version = "4.1.3", features = ["legacy_compatibility"] }
x25519-dalek = { version = "2.0.1", features = ["static_secrets"] }
ed25519-dalek = { version = "2.0.0", features = ["rand_core", "digest"] }
ed25519-dalek = { version = "2.2.0", features = ["rand_core", "digest"] }
deoxysii = "0.2.4"
tiny-keccak = { version = "2.0.2", features = ["sha3", "tuple_hash"] }
sp800-185 = "0.2.0"
Expand All @@ -62,27 +62,27 @@ num-traits = "0.2.19"
num-derive = "0.4.2"
bech32 = "0.11.0"
impl-trait-for-tuples = "0.2.1"
x509-parser = "0.16.0"
oid-registry = "0.7.1"
x509-parser = "0.17.0"
oid-registry = "0.8.1"
rsa = "0.9.6"
base64-serde = "0.8.0"
lru = "0.12.5"
lru = "0.16.0"
async-trait = "0.1.83"
cfg-if = "1.0"

# TDX dependencies.
libc = { version = "0.2.158", optional = true }
nix = { version = "0.29.0", features = ["mount", "signal"], optional = true }
libc = { version = "0.2.175", optional = true }
nix = { version = "0.30.1", features = ["mount", "signal"], optional = true }
vsock = { version = "0.5.1", optional = true }

[target.'cfg(not(target_env = "sgx"))'.dependencies.tokio]
version = "1.44.2"
version = "1.47.1"
features = ["full"]

[dev-dependencies]
# For storage interoperability tests only.
jsonrpc = { version = "0.18.0", features = ["simple_uds"] }
tempfile = "3.13.0"
tempfile = "3.20.0"
tendermint-testgen = "0.40.3"

[features]
Expand Down
6 changes: 3 additions & 3 deletions secret-sharing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ p384 = { version = "0.13", default-features = false, features = [
"std",
"hash2curve",
] }
rand = { version = "0.8" }
rand_core = { version = "0.6" }
rand = { version = "0.9" }
rand_core = { version = "0.9" }
sha3 = { version = "0.10" }
subtle = { version = "2.6", default-features = false }
thiserror = { version = "1.0" }
thiserror = { version = "2.0" }
zeroize = { version = "1.7" }

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions tests/runtimes/simple-keyvalue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ simple-keymanager = { path = "../simple-keymanager" }

# Third party.
anyhow = "1.0"
thiserror = "1.0"
thiserror = "2.0"
byteorder = "1.4.3"
tokio = { version = "1.44.2", features = ["rt"] }
tokio = { version = "1.47.1", features = ["rt"] }

[features]
debug-mock-sgx = [
Expand Down
12 changes: 6 additions & 6 deletions tests/runtimes/simple-rofl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ oasis-core-keymanager = { path = "../../../keymanager" }

anyhow = "1.0"
async-trait = "0.1.83"
mbedtls = { version = "0.12.3", features = ["x509"] }
rand = "0.8.5"
rustls = { version = "0.23.18", default-features = false }
rustls-mbedcrypto-provider = { version = "0.1.0" }
rustls-mbedpki-provider = { version = "0.2.0" }
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread", "sync"] }
mbedtls = { version = "0.13.3", features = ["x509"] }
rand = "0.9.2"
rustls = { version = "0.23.31", default-features = false }
rustls-mbedcrypto-provider = { version = "0.1.1" }
rustls-mbedpki-provider = { version = "0.2.1" }
tokio = { version = "1.47.1", features = ["rt", "rt-multi-thread", "sync"] }

[features]
debug-mock-sgx = [
Expand Down
6 changes: 3 additions & 3 deletions tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2018"

[dependencies]
anyhow = "1.0"
thiserror = "1.0"
thiserror = "2.0"
serde = { version = "1.0.210", features = ["derive"] }
toml = "0.8.19"
clap = "4.5.20"
toml = "0.9.5"
clap = "4.5.43"
ansi_term = "0.12.1"

[[bin]]
Expand Down
Loading