Merge branch 'main' into fix-ping
This commit is contained in:
commit
c865cc9f9c
3 changed files with 267 additions and 245 deletions
496
Cargo.lock
generated
496
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
14
Cargo.toml
14
Cargo.toml
|
@ -22,21 +22,21 @@ telemetry = ["opentelemetry", "opentelemetry-contrib", "rand"]
|
|||
[dependencies]
|
||||
futures = "0.3.17"
|
||||
tokio = { version = "1.0", default-features = false, features = ["net", "rt", "rt-multi-thread", "sync", "time", "macros", "io-util", "signal"] }
|
||||
tokio-util = { version = "0.6.8", default-features = false, features = ["compat"] }
|
||||
tokio-util = { version = "0.7", default-features = false, features = ["compat"] }
|
||||
tokio-stream = "0.1.7"
|
||||
|
||||
serde = { version = "1.0", default-features = false, features = ["derive"] }
|
||||
rmp-serde = "0.14.3"
|
||||
rmp-serde = "0.15"
|
||||
hex = "0.4.2"
|
||||
|
||||
rand = { version = "0.5.5", optional = true }
|
||||
rand = { version = "0.8", optional = true }
|
||||
|
||||
log = "0.4.8"
|
||||
arc-swap = "1.1"
|
||||
async-trait = "0.1.7"
|
||||
err-derive = "0.2.3"
|
||||
bytes = "0.6.0"
|
||||
lru = { version = "0.6", optional = true }
|
||||
err-derive = "0.3"
|
||||
bytes = "1.0"
|
||||
lru = { version = "0.7", optional = true }
|
||||
cfg-if = "1.0"
|
||||
|
||||
sodiumoxide = { version = "0.2.5-0", package = "kuska-sodiumoxide" }
|
||||
|
@ -46,7 +46,7 @@ opentelemetry = { version = "0.17", optional = true }
|
|||
opentelemetry-contrib = { version = "0.9", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.8"
|
||||
env_logger = "0.9"
|
||||
structopt = { version = "0.3", default-features = false }
|
||||
chrono = "0.4"
|
||||
|
||||
|
|
|
@ -138,7 +138,7 @@ impl BasaltView {
|
|||
let mut ret = vec![];
|
||||
let mut rng = thread_rng();
|
||||
for _i in 0..count {
|
||||
let idx = rng.gen_range(0, possibles.len());
|
||||
let idx = rng.gen_range(0..possibles.len());
|
||||
ret.push(self.slots[possibles[idx]].peer.unwrap());
|
||||
}
|
||||
ret
|
||||
|
|
Loading…
Reference in a new issue