Skip to content

Commit

Permalink
build(deps): bump the prod group with 7 updates
Browse files Browse the repository at this point in the history
Bumps the prod group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.17` | `0.3.18` |
| [tracing-appender](https://github.com/tokio-rs/tracing) | `0.2.2` | `0.2.3` |
| [hyper](https://github.com/hyperium/hyper) | `0.14.27` | `1.0.1` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.1` | `0.12.2` |
| [primitive-types](https://github.com/paritytech/parity-common) | `0.11.1` | `0.12.2` |
| [secp256k1](https://github.com/rust-bitcoin/rust-secp256k1) | `0.26.0` | `0.28.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.11.0` | `0.12.0` |


Updates `tracing-subscriber` from 0.3.17 to 0.3.18
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.17...tracing-subscriber-0.3.18)

Updates `tracing-appender` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-appender-0.2.2...tracing-appender-0.2.3)

Updates `hyper` from 0.14.27 to 1.0.1
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v1.0.1)

Updates `prost` from 0.12.1 to 0.12.2
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.1...v0.12.2)

Updates `primitive-types` from 0.11.1 to 0.12.2
- [Commits](https://github.com/paritytech/parity-common/commits)

Updates `secp256k1` from 0.26.0 to 0.28.0
- [Changelog](https://github.com/rust-bitcoin/rust-secp256k1/blob/master/CHANGELOG.md)
- [Commits](rust-bitcoin/rust-secp256k1@secp256k1-0.26.0...secp256k1-0.28.0)

Updates `itertools` from 0.11.0 to 0.12.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.11.0...v0.12.0)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: tracing-appender
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: prod
- dependency-name: primitive-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: secp256k1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: prod
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 17, 2023
1 parent c3b11e3 commit 1afdc98
Show file tree
Hide file tree
Showing 9 changed files with 179 additions and 67 deletions.
214 changes: 163 additions & 51 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ incrementalmerkletree = "0.5.0"
jubjub = "0.10.0"
lazy_static = "1.4.0"
num-integer = "0.1.45"
primitive-types = "0.11.1"
primitive-types = "0.12.2"
rand_core = "0.6.4"
ripemd = "0.1.3"
# Matches version used by hdwallet
secp256k1 = { version = "0.26.0", features = ["serde"] }
secp256k1 = { version = "0.28.0", features = ["serde"] }
sha2 = { version = "0.10.7", features = ["compress"] }
uint = "0.9.5"
x25519-dalek = { version = "2.0.0-rc.3", features = ["serde"] }
Expand Down Expand Up @@ -102,7 +102,7 @@ serde-big-array = "0.5.1"

# Processing
futures = "0.3.29"
itertools = "0.11.0"
itertools = "0.12.0"
rayon = "1.7.0"

# ZF deps
Expand Down
2 changes: 1 addition & 1 deletion zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ spandoc = "0.2.2"

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
tracing-subscriber = "0.3.18"

zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
Expand Down
2 changes: 1 addition & 1 deletion zebra-network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dirs = "5.0.1"
hex = "0.4.3"
humantime-serde = "1.1.1"
indexmap = { version = "2.0.1", features = ["serde"] }
itertools = "0.11.0"
itertools = "0.12.0"
lazy_static = "1.4.0"
num-integer = "0.1.45"
ordered-map = "0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion zebra-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ chrono = { version = "0.4.31", default-features = false, features = ["clock", "s
futures = "0.3.29"

# lightwalletd sends JSON-RPC requests over HTTP 1.1
hyper = { version = "0.14.27", features = ["http1", "server"] }
hyper = { version = "1.0.1", features = ["http1", "server"] }

jsonrpc-core = "18.0.0"
jsonrpc-derive = "18.0.0"
Expand Down
2 changes: 1 addition & 1 deletion zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ hex = "0.4.3"
hex-literal = "0.4.1"
humantime-serde = "1.1.1"
indexmap = "2.0.1"
itertools = "0.11.0"
itertools = "0.12.0"
lazy_static = "1.4.0"
metrics = "0.21.1"
mset = "0.1.1"
Expand Down
4 changes: 2 additions & 2 deletions zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ hex = "0.4.3"
indexmap = "2.0.1"
lazy_static = "1.4.0"
insta = "1.33.0"
itertools = "0.11.0"
itertools = "0.12.0"
proptest = "1.4.0"
once_cell = "1.18.0"
rand = "0.8.5"
Expand All @@ -39,7 +39,7 @@ owo-colors = "3.5.0"
spandoc = "0.2.2"
thiserror = "1.0.48"

tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-error = "0.2.0"
tracing = "0.1.39"

Expand Down
4 changes: 2 additions & 2 deletions zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ structopt = "0.3.26"
hex = "0.4.3"
serde_json = "1.0.108"
tracing-error = "0.2.0"
tracing-subscriber = "0.3.17"
tracing-subscriber = "0.3.18"
thiserror = "1.0.48"

zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.31" }
Expand All @@ -81,7 +81,7 @@ zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.31" }
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.31", optional = true }

# These crates are needed for the zebra-checkpoints binary
itertools = { version = "0.11.0", optional = true }
itertools = { version = "0.12.0", optional = true }

# These crates are needed for the search-issue-refs binary
regex = { version = "1.10.2", optional = true }
Expand Down
10 changes: 5 additions & 5 deletions zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ tinyvec = { version = "1.6.0", features = ["rustc_1_55"] }

thiserror = "1.0.48"

tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-appender = "0.2.3"
tracing-error = "0.2.0"
tracing-futures = "0.2.5"
tracing = "0.1.39"
Expand All @@ -210,7 +210,7 @@ inferno = { version = "0.11.18", default-features = false, optional = true }
tracing-journald = { version = "0.3.0", optional = true }

# prod feature filter-reload
hyper = { version = "0.14.27", features = ["http1", "http2", "server"], optional = true }
hyper = { version = "1.0.1", features = ["http1", "http2", "server"], optional = true }

# prod feature prometheus
metrics-exporter-prometheus = { version = "0.12.0", default-features = false, features = ["http-listener"], optional = true }
Expand Down Expand Up @@ -251,14 +251,14 @@ insta = { version = "1.33.0", features = ["json"] }
serde_json = { version = "1.0.108", features = ["preserve_order"] }
tempfile = "3.8.1"

hyper = { version = "0.14.27", features = ["http1", "http2", "server"]}
hyper = { version = "1.0.1", features = ["http1", "http2", "server"]}
tracing-test = { version = "0.2.4", features = ["no-env-filter"] }

tokio = { version = "1.34.0", features = ["full", "tracing", "test-util"] }
tokio-stream = "0.1.14"

# test feature lightwalletd-grpc-tests
prost = "0.12.1"
prost = "0.12.2"
tonic = "0.10.2"

proptest = "1.4.0"
Expand Down

0 comments on commit 1afdc98

Please sign in to comment.