diff options
author | a5ob7r <12132068+a5ob7r@users.noreply.github.com> | 2022-06-20 23:19:04 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-20 14:19:04 +0000 |
commit | 6018590d7be62d3a5317f228571d353004da0220 (patch) | |
tree | d36e6a5e1445b78feb5119a6659c3a7b0973b944 | |
parent | 9236242857a3ede1f8e9d22bf9f2ac64d8f6510e (diff) | |
download | alacritty-6018590d7be62d3a5317f228571d353004da0220.tar.gz alacritty-6018590d7be62d3a5317f228571d353004da0220.zip |
Bump dirs to 4.0.0
This is to remove dependencies on multiple versions of dirs crate.
-rw-r--r-- | Cargo.lock | 15 | ||||
-rw-r--r-- | alacritty/Cargo.toml | 2 | ||||
-rw-r--r-- | alacritty_terminal/Cargo.toml | 2 |
3 files changed, 5 insertions, 14 deletions
@@ -20,7 +20,7 @@ dependencies = [ "cocoa", "copypasta", "crossfont", - "dirs 3.0.2", + "dirs", "embed-resource", "fnv", "gl_generator", @@ -62,7 +62,7 @@ dependencies = [ "alacritty_config_derive", "base64", "bitflags", - "dirs 3.0.2", + "dirs", "libc", "log", "mio 0.6.23", @@ -445,15 +445,6 @@ dependencies = [ [[package]] name = "dirs" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309" -dependencies = [ - "dirs-sys", -] - -[[package]] -name = "dirs" version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" @@ -2058,7 +2049,7 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c4583db5cbd4c4c0303df2d15af80f0539db703fa1c68802d4cbbd2dd0f88f6" dependencies = [ - "dirs 4.0.0", + "dirs", ] [[package]] diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index bbcfe37f..85b23c0a 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -33,7 +33,7 @@ copypasta = { version = "0.8.0", default-features = false } libc = "0.2" unicode-width = "0.1" bitflags = "1" -dirs = "3.0.1" +dirs = "4.0.0" once_cell = "1.12" [build-dependencies] diff --git a/alacritty_terminal/Cargo.toml b/alacritty_terminal/Cargo.toml index e722f2ee..e758009c 100644 --- a/alacritty_terminal/Cargo.toml +++ b/alacritty_terminal/Cargo.toml @@ -26,7 +26,7 @@ log = "0.4" unicode-width = "0.1" base64 = "0.13.0" regex-automata = "0.1.9" -dirs = "3.0.1" +dirs = "4.0.0" [target.'cfg(unix)'.dependencies] nix = "0.22.0" |