Skip to content

Commit

Permalink
deps: swap the unmaintained dirs crate for its replacement dirs-next
Browse files Browse the repository at this point in the history
  • Loading branch information
mimoo authored and benesch committed Dec 22, 2020
1 parent 9c3bcf9 commit 37a042a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(Please put changes here)

- Display `rusoto_core::Client` in docs
- Swap the unmaintained `dirs` crate for its replacement `dirs-next`


## [0.45.0] - 2020-07-22

Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ edition = "2018"
[dependencies]
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
dirs = "2.0"
dirs-next = "2.0.0"
futures = "0.3"
hyper = "0.13.1"
pin-project = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion rusoto/credential/src/profile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::io::{BufRead, BufReader};
use std::path::{Path, PathBuf};

use async_trait::async_trait;
use dirs::home_dir;
use dirs_next::home_dir;
use regex::Regex;
use serde::Deserialize;
use tokio::process::Command;
Expand Down

0 comments on commit 37a042a

Please sign in to comment.