mirror of
https://github.com/haileys/bark
synced 2024-11-10 14:04:15 +00:00
remove rand from bark-protocol dependencies
This commit is contained in:
parent
71bdc833c1
commit
445d048f23
4 changed files with 1 additions and 4 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -98,7 +98,6 @@ dependencies = [
|
||||||
"bitflags 2.4.0",
|
"bitflags 2.4.0",
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"rand",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
@ -13,4 +13,3 @@ bark-protocol = { path = "bark-protocol" }
|
||||||
bitflags = { version = "2.4.0", features = ["bytemuck"] }
|
bitflags = { version = "2.4.0", features = ["bytemuck"] }
|
||||||
bytemuck = { version = "1.13", features = ["derive"] }
|
bytemuck = { version = "1.13", features = ["derive"] }
|
||||||
derive_more = { version = "0.99" }
|
derive_more = { version = "0.99" }
|
||||||
rand = { version = "0.8.5", no-default-features = true }
|
|
||||||
|
|
|
@ -9,4 +9,3 @@ bark-alloc = { workspace = true }
|
||||||
bitflags = { workspace = true }
|
bitflags = { workspace = true }
|
||||||
bytemuck = { workspace = true }
|
bytemuck = { workspace = true }
|
||||||
derive_more = { workspace = true }
|
derive_more = { workspace = true }
|
||||||
rand = { workspace = true }
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ cpal = "0.15.2"
|
||||||
derive_more = { workspace = true }
|
derive_more = { workspace = true }
|
||||||
libc = "0.2.147"
|
libc = "0.2.147"
|
||||||
nix = { version = "0.26.2", features = ["time", "socket", "net", "poll", "user", "hostname"], default-features = false }
|
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 = { version = "1.0.183", features = ["derive"] }
|
||||||
serde_json = "1.0.105"
|
serde_json = "1.0.105"
|
||||||
socket2 = "0.5.3"
|
socket2 = "0.5.3"
|
||||||
|
|
Loading…
Reference in a new issue