Skip to content
Open
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
812 changes: 438 additions & 374 deletions Cargo.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions keymanager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ 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.2"
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"] }
zeroize = "1.7"
async-trait = "0.1.83"
tokio = { version = "1.48", features = ["rt"] }
zeroize = "1.8"
async-trait = "0.1.89"
p384 = { version = "0.13.0" }
p256 = { version = "0.13.2" }

Expand Down
8 changes: 4 additions & 4 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.53"
anyhow = "1.0"
futures = { version = "0.3.31", features = ["compat", "io-compat"] }
tokio = { version = "1.44", features = ["full"] }
tokio = { version = "1.48", features = ["full"] }

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

[[bin]]
Expand Down
52 changes: 26 additions & 26 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ slog = "2.7.0"
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 = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.145", 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.4", features = ["x509", "chrono"] }
yasna = { version = "0.5.0", features = ["num-bigint"] }
bincode = "1.3.3"
bitflags = "2.6.0"
snow = "0.9.6"
percent-encoding = "2.2.0"
chrono = "0.4.19"
bincode = "3.0.0"
bitflags = "2.10.0"
snow = "0.10.0"
percent-encoding = "2.3.2"
chrono = "0.4.42"
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.48", features = [
"rt",
"rt-multi-thread",
"sync",
Expand All @@ -47,46 +47,46 @@ 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"
zeroize = "1.7"
zeroize = "1.8"
intrusive-collections = "0.9.7"
sha2 = { version = "0.10.7", features = ["oid"] }
hmac = "0.12.1"
honggfuzz = "0.5.55"
arbitrary = { version = "1.2.0", features = ["derive"] }
honggfuzz = "0.5.58"
arbitrary = { version = "1.4.2", features = ["derive"] }
num-bigint = "0.4"
num-traits = "0.2.19"
num-derive = "0.4.2"
bech32 = "0.11.0"
bech32 = "0.11.1"
impl-trait-for-tuples = "0.2.1"
x509-parser = "0.16.0"
oid-registry = "0.7.1"
rsa = "0.9.6"
x509-parser = "0.18.0"
oid-registry = "0.8.1"
rsa = "0.9.9"
base64-serde = "0.8.0"
lru = "0.12.5"
async-trait = "0.1.83"
lru = "0.16.2"
async-trait = "0.1.89"
cfg-if = "1.0"

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

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

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

[features]
Expand Down
8 changes: 4 additions & 4 deletions secret-sharing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ 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" }
zeroize = { version = "1.7" }
thiserror = { version = "2.0" }
zeroize = { version = "1.8" }

[[bin]]
name = "fuzz-vss"
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.48.0", features = ["rt"] }

[features]
debug-mock-sgx = [
Expand Down
14 changes: 7 additions & 7 deletions tests/runtimes/simple-rofl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ oasis-core-runtime = { path = "../../../runtime" }
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"] }
async-trait = "0.1.89"
mbedtls = { version = "0.13.4", features = ["x509"] }
rand = "0.9.2"
rustls = { version = "0.23.35", default-features = false }
rustls-mbedcrypto-provider = { version = "0.1.1" }
rustls-mbedpki-provider = { version = "0.2.1" }
tokio = { version = "1.48.0", features = ["rt", "rt-multi-thread", "sync"] }

[features]
debug-mock-sgx = [
Expand Down
8 changes: 4 additions & 4 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"
serde = { version = "1.0.210", features = ["derive"] }
toml = "0.8.19"
clap = "4.5.20"
thiserror = "2.0"
serde = { version = "1.0.228", features = ["derive"] }
toml = "0.9.10"
clap = "4.5.53"
ansi_term = "0.12.1"

[[bin]]
Expand Down
Loading