mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-20 03:25:41 +00:00
Bump zstd from 0.11.2+zstd.1.5.2 to 0.12.3+zstd.1.5.2 (#13671)
Bumps [zstd](https://github.com/gyscos/zstd-rs) from 0.11.2+zstd.1.5.2 to 0.12.3+zstd.1.5.2. - [Release notes](https://github.com/gyscos/zstd-rs/releases) - [Commits](https://github.com/gyscos/zstd-rs/commits) --- updated-dependencies: - dependency-name: zstd dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Generated
+25
-6
@@ -6836,7 +6836,7 @@ dependencies = [
|
||||
"substrate-state-trie-migration-rpc",
|
||||
"thousands",
|
||||
"tokio",
|
||||
"zstd",
|
||||
"zstd 0.12.3+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -10592,7 +10592,7 @@ name = "sp-maybe-compressed-blob"
|
||||
version = "4.1.0-dev"
|
||||
dependencies = [
|
||||
"thiserror",
|
||||
"zstd",
|
||||
"zstd 0.12.3+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -10703,7 +10703,7 @@ dependencies = [
|
||||
"sp-tracing",
|
||||
"sp-weights",
|
||||
"substrate-test-runtime-client",
|
||||
"zstd",
|
||||
"zstd 0.12.3+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -12052,7 +12052,7 @@ dependencies = [
|
||||
"substrate-cli-test-utils",
|
||||
"substrate-rpc-client",
|
||||
"tokio",
|
||||
"zstd",
|
||||
"zstd 0.12.3+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -12596,7 +12596,7 @@ dependencies = [
|
||||
"sha2 0.10.6",
|
||||
"toml",
|
||||
"windows-sys 0.42.0",
|
||||
"zstd",
|
||||
"zstd 0.11.2+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -13317,7 +13317,16 @@ version = "0.11.2+zstd.1.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
|
||||
dependencies = [
|
||||
"zstd-safe",
|
||||
"zstd-safe 5.0.2+zstd.1.5.2",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zstd"
|
||||
version = "0.12.3+zstd.1.5.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
||||
dependencies = [
|
||||
"zstd-safe 6.0.5+zstd.1.5.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
@@ -13330,6 +13339,16 @@ dependencies = [
|
||||
"zstd-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zstd-safe"
|
||||
version = "6.0.5+zstd.1.5.4"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b"
|
||||
dependencies = [
|
||||
"libc",
|
||||
"zstd-sys",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "zstd-sys"
|
||||
version = "2.0.7+zstd.1.5.4"
|
||||
|
||||
@@ -17,7 +17,7 @@ log = { version = "0.4.17", default-features = false }
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.133", optional = true }
|
||||
thousands = { version = "0.2.0", optional = true }
|
||||
zstd = { version = "0.11.2", default-features = false, optional = true }
|
||||
zstd = { version = "0.12.3", default-features = false, optional = true }
|
||||
frame-benchmarking = { default-features = false, optional = true, path = "../benchmarking" }
|
||||
frame-support = { default-features = false, path = "../support" }
|
||||
frame-system = { default-features = false, path = "../system" }
|
||||
|
||||
@@ -12,4 +12,4 @@ readme = "README.md"
|
||||
|
||||
[dependencies]
|
||||
thiserror = "1.0"
|
||||
zstd = { version = "0.11.2", default-features = false }
|
||||
zstd = { version = "0.12.3", default-features = false }
|
||||
|
||||
@@ -33,7 +33,7 @@ sp-weights = { version = "4.0.0", default-features = false, path = "../weights"
|
||||
[dev-dependencies]
|
||||
rand = "0.8.5"
|
||||
serde_json = "1.0.85"
|
||||
zstd = { version = "0.11.2", default-features = false }
|
||||
zstd = { version = "0.12.3", default-features = false }
|
||||
sp-api = { version = "4.0.0-dev", path = "../api" }
|
||||
sp-state-machine = { version = "0.13.0", path = "../state-machine" }
|
||||
sp-tracing = { version = "6.0.0", path = "../../primitives/tracing" }
|
||||
|
||||
@@ -42,7 +42,7 @@ log = "0.4.17"
|
||||
parity-scale-codec = "3.2.2"
|
||||
serde = "1.0.136"
|
||||
serde_json = "1.0.85"
|
||||
zstd = { version = "0.11.2", default-features = false }
|
||||
zstd = { version = "0.12.3", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_cmd = "2.0.10"
|
||||
|
||||
Reference in New Issue
Block a user