Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump dirs from 4.0.0 to 5.0.0 #6360

Merged
merged 2 commits into from
Mar 22, 2023
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
19 changes: 15 additions & 4 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1210,16 +1210,16 @@ version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
dependencies = [
"dirs-sys",
"dirs-sys 0.3.6",
]

[[package]]
name = "dirs"
version = "4.0.0"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd"
dependencies = [
"dirs-sys",
"dirs-sys 0.4.0",
]

[[package]]
Expand All @@ -1233,6 +1233,17 @@ dependencies = [
"winapi",
]

[[package]]
name = "dirs-sys"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b"
dependencies = [
"libc",
"redox_users",
"windows-sys 0.45.0",
]

[[package]]
name = "displaydoc"
version = "0.2.3"
Expand Down
4 changes: 3 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,15 @@ skip-tree = [
# Wait until `orchard` updates `aes`, which depends on `cipher`
{ name = "cipher", version = "=0.3.0" },


# wait for zcash_primitives to remove duplicated dependencies
{ name = "block-buffer", version = "=0.7.3" },
{ name = "block-buffer", version = "=0.9.0" },

# wait for zcash_address to upgrade
{ name = "bech32", version = "=0.8.1"},

# wait for zcash_proofs to upgrade `directories`
{ name = "dirs-sys", version = "=0.3.6"},

# zebra-utils dependencies

Expand Down
2 changes: 1 addition & 1 deletion zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ elasticsearch = [
[dependencies]
bincode = "1.3.3"
chrono = { version = "0.4.24", default-features = false, features = ["clock", "std"] }
dirs = "4.0.0"
dirs = "5.0.0"
futures = "0.3.27"
hex = "0.4.3"
indexmap = "1.9.2"
Expand Down
2 changes: 1 addition & 1 deletion zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ tracing = "0.1.37"

metrics = "0.20.1"

dirs = "4.0.0"
dirs = "5.0.0"
atty = "0.2.14"

num-integer = "0.1.45"
Expand Down