Skip to content

Commit 5af46ad

Browse files
committed
Update other dependencies
1 parent 884d375 commit 5af46ad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ percent-encoding = "2.1.0"
3636
walkdir = "2.2"
3737
toml = "0.5"
3838
fs2 = "0.4.3"
39-
remove_dir_all = "0.5.2"
39+
remove_dir_all = "0.7"
4040
base64 = "0.13.0"
41-
getrandom = { version = "0.1.12", features = ["std"] }
41+
getrandom = { version = "0.2", features = ["std"] }
4242
thiserror = "1.0.20"
4343
git2 = "0.13.12"
4444

4545
[target.'cfg(unix)'.dependencies]
46-
nix = "0.11.0"
46+
nix = "0.20.0"
4747

4848
[target.'cfg(windows)'.dependencies]
4949
winapi = "0.3"
5050

5151
[dev-dependencies]
52-
env_logger = "0.6.1"
53-
tiny_http = "0.7.0"
52+
env_logger = "0.8"
53+
tiny_http = "0.8.0"

tests/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub(crate) fn init_named_workspace(name: &str) -> Result<Workspace, Error> {
2828
fn init_logs() {
2929
let env = env_logger::Builder::new()
3030
.filter_module("rustwide", LevelFilter::Info)
31-
.default_format_timestamp(false)
31+
.format_timestamp(None)
3232
.is_test(true)
3333
.build();
3434
rustwide::logging::init_with(env);

0 commit comments

Comments
 (0)