summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2023-10-27 15:01:52 +0200
committerNeal H. Walfield <neal@pep.foundation>2023-10-27 15:01:52 +0200
commitef8ed6342f76e70921f8ae77279310c301d9de9e (patch)
tree9829ac2628e541f220eb74036fd9508b80be9a58
parentfceaa3cd97e94a72b6cccfb474d41b6124cd356e (diff)
ipc: Upgrade dirs
-rw-r--r--Cargo.lock17
-rw-r--r--ipc/Cargo.toml2
2 files changed, 13 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 29c37a34..f610ba00 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -795,9 +795,9 @@ dependencies = [
[[package]]
name = "dirs"
-version = "4.0.0"
+version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
+checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
"dirs-sys",
]
@@ -814,13 +814,14 @@ dependencies = [
[[package]]
name = "dirs-sys"
-version = "0.3.7"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
+checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
+ "option-ext",
"redox_users",
- "winapi",
+ "windows-sys",
]
[[package]]
@@ -1910,6 +1911,12 @@ dependencies = [
]
[[package]]
+name = "option-ext"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
+
+[[package]]
name = "p256"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 9e68dc6a..ffe47bdf 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -39,7 +39,7 @@ thiserror = "1.0.2"
tokio = { version = "1.19", features = [ "rt-multi-thread", "io-util", "net" ] }
tokio-util = { version = "0.7", features = ["compat"] }
socket2 = "0.4"
-dirs = "4.0"
+dirs = "5"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.8", default-features = false, features = ["winsock2"] }