build: remove rand

Signed-off-by: Changyuan Lyu <changyuanl@google.com>
This commit is contained in:
Changyuan Lyu 2024-07-22 22:31:23 -07:00 committed by Lencerf
parent 3c0ece6110
commit 949a371662
2 changed files with 0 additions and 49 deletions

48
Cargo.lock generated
View file

@ -23,7 +23,6 @@ dependencies = [
"log",
"mio",
"parking_lot",
"rand",
"serde",
"snafu",
"zerocopy",
@ -240,17 +239,6 @@ dependencies = [
"thiserror",
]
[[package]]
name = "getrandom"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "glob"
version = "0.3.1"
@ -395,12 +383,6 @@ dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "proc-macro2"
version = "1.0.86"
@ -419,36 +401,6 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
version = "0.5.2"

View file

@ -16,7 +16,6 @@ bitflags = "2.4.0"
bitfield = "0.15.0"
log = "0.4"
mio = { version = "1", features = ["os-poll", "os-ext", "net"] }
rand = "0.8.5"
libc = "0.2.150"
parking_lot.workspace = true
macros = { version = "0.3.0", path = "../macros", package = "alioth-macros" }