Skip to content

Commit

Permalink
Deduplicate the dependencies on rand (theseus-os#518)
Browse files Browse the repository at this point in the history
* Removes unneeded sub-crates in the `rand` tree

* Matches `rand` versions used by `wasmtime`
  • Loading branch information
kevinaboos authored May 11, 2022
1 parent 2b1d624 commit 7990000
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 61 deletions.
61 changes: 4 additions & 57 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions kernel/ixgbe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ path = "../pit_clock"
path = "../interrupts"

[dependencies.rand]
version = "0.6"
version = "0.8"
default-features = false
features = [ "alloc" ]
features = [ "alloc", "small_rng" ]

[dependencies.hpet]
path = "../acpi/hpet"
Expand Down
4 changes: 2 additions & 2 deletions kernel/ota_update_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ features = [
]

[dependencies.rand]
version = "0.6"
version = "0.8"
default-features = false
features = [ "alloc" ]
features = [ "alloc", "small_rng" ]

[dependencies.smoltcp_helper]
path = "../smoltcp_helper"

0 comments on commit 7990000

Please sign in to comment.