Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libosdp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ itoa = "1.0.17"
[dev-dependencies]
env_logger = "0.11.8"
multiqueue = "0.3.2"
rand = "0.9.2"
rand = "0.10.1"
ringbuf = "0.5.0"
sha256 = "1.6.0"

Expand Down
2 changes: 1 addition & 1 deletion libosdp/tests/file_transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type Result<T> = core::result::Result<T, libosdp::OsdpError>;

use core::time::Duration;
use libosdp::{OsdpCommand, OsdpCommandFileTx, OsdpError, OsdpFileOps};
use rand::Rng;
use rand::RngExt;
use std::{
cmp,
collections::HashMap,
Expand Down
2 changes: 1 addition & 1 deletion osdpctl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ libosdp = { path = "../libosdp" }
log = "0.4.29"
log4rs = "1.4.0"
nix = { version = "0.31.1", features = ["signal"] }
rand = "0.9.2"
rand = "0.10.1"
toml = "1.1.2"
2 changes: 1 addition & 1 deletion osdpctl/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use anyhow::bail;
use anyhow::Context;
use configparser::ini::Ini;
use libosdp::{ControlPanelBuilder, OsdpFlag, PdCapability, PdId, PdInfoBuilder};
use rand::Rng;
use rand::RngExt;
use std::{
fmt::Write,
path::{Path, PathBuf},
Expand Down