remove rand from bark-protocol dependencies

This commit is contained in:
Hailey Somerville 2023-09-14 17:46:27 +10:00
parent 71bdc833c1
commit 445d048f23
4 changed files with 1 additions and 4 deletions

1
Cargo.lock generated
View file

@ -98,7 +98,6 @@ dependencies = [
"bitflags 2.4.0",
"bytemuck",
"derive_more",
"rand",
]
[[package]]

View file

@ -13,4 +13,3 @@ bark-protocol = { path = "bark-protocol" }
bitflags = { version = "2.4.0", features = ["bytemuck"] }
bytemuck = { version = "1.13", features = ["derive"] }
derive_more = { version = "0.99" }
rand = { version = "0.8.5", no-default-features = true }

View file

@ -9,4 +9,3 @@ bark-alloc = { workspace = true }
bitflags = { workspace = true }
bytemuck = { workspace = true }
derive_more = { workspace = true }
rand = { workspace = true }

View file

@ -15,7 +15,7 @@ cpal = "0.15.2"
derive_more = { workspace = true }
libc = "0.2.147"
nix = { version = "0.26.2", features = ["time", "socket", "net", "poll", "user", "hostname"], default-features = false }
rand = { workspace = true, features = ["default"] }
rand = "0.8.5"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
socket2 = "0.5.3"