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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ async-trait = "0.1"
futures = "0.3"

# Random number generation
rand = "0.8"
rand = "0.10"

# Error handling
anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion crates/oasis_autonomous/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["v4", "serde"] }

# Random
rand = "0.8"
rand = "0.10"

# Image processing
image = "0.24"
Expand Down
2 changes: 1 addition & 1 deletion crates/oasis_browser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ reqwest = { workspace = true }
url = "2"

# Random (stealth)
rand = "0.8"
rand = "0.10"

# Logging
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/oasis_manus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ chrono = { workspace = true }
thiserror = { workspace = true }
regex = "1.10"
url = "2.5"
rand = "0.8"
rand = "0.10"
base64 = "0.22"
bytes = "1"

Expand Down
2 changes: 1 addition & 1 deletion crates/sentient_backup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ flate2 = "1.0"
sha2 = "0.10"
hex = "0.4"
regex = "1.10"
rand = "0.8"
rand = "0.10"
pbkdf2 = "0.12"
hmac = "0.12"
aes-gcm = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion crates/sentient_enterprise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ log = "0.4"
# Security
jsonwebtoken = "9"
argon2 = "0.5"
rand = "0.8"
rand = "0.10"
uuid = { version = "1", features = ["v4", "serde"] }

# Database - using rusqlite for consistency with other crates
Expand Down
2 changes: 1 addition & 1 deletion crates/sentient_marketplace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ thiserror.workspace = true
log.workspace = true
chrono.workspace = true
uuid.workspace = true
rand = "0.8"
rand = "0.10"

# Semver for version handling
semver = { version = "1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/sentient_tee/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ blake3 = "1.5"
hex = "0.4"
aes-gcm = "0.10"
x25519-dalek = { version = "2", features = ["static_secrets"] }
rand = "0.8"
rand = "0.10"
base64 = "0.22"

# Networking
Expand Down
2 changes: 1 addition & 1 deletion dashboard/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tower = { workspace = true }
tower-http = { workspace = true, features = ["fs", "cors"] }
futures = "0.3"
sysinfo = "0.30"
rand = "0.8"
rand = "0.10"

[[bin]]
name = "nexus-dashboard"
Expand Down
Loading