Compare commits

...

3 Commits

Author SHA1 Message Date
Alfredo Garcia 9c023c0139 add changeloig entry 2024-04-24 09:25:38 -03:00
Alfredo Garcia 250ae1c9e3 update `cxx-gen` 2024-04-24 09:13:22 -03:00
Alfredo Garcia c941942977 update `cc` 2024-04-24 09:09:58 -03:00
3 changed files with 15 additions and 9 deletions

View File

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] - ReleaseDate
## [0.1.16] - 2024-04-24
### Changed
- Update `depend/zcash` to version 5.9.0 which includes updated dependencies
## [0.1.15] - 2024-04-19
### Changed

17
Cargo.lock generated
View File

@ -257,12 +257,13 @@ dependencies = [
[[package]]
name = "cc"
version = "1.0.83"
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b"
dependencies = [
"jobserver",
"libc",
"once_cell",
]
[[package]]
@ -424,9 +425,9 @@ dependencies = [
[[package]]
name = "cxx-gen"
version = "0.7.109"
version = "0.7.121"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1318697052dbc5a12f8e5e603441413d6096350c29b8361eb45a9c531be61dda"
checksum = "383ecb9f96a536a1c7a2a61c5786f583da84f9240da149d78d005a4413c9a71e"
dependencies = [
"codespan-reporting",
"proc-macro2",
@ -712,9 +713,9 @@ dependencies = [
[[package]]
name = "jobserver"
version = "0.1.26"
version = "0.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
dependencies = [
"libc",
]
@ -936,9 +937,9 @@ dependencies = [
[[package]]
name = "once_cell"
version = "1.18.0"
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "opaque-debug"

View File

@ -89,7 +89,7 @@ bindgen = ">= 0.64.0"
# These dependencies are shared with a lot of other Zebra dependencies,
# so they are configured to automatically upgrade to match Zebra.
# But we try to use the latest versions here, to catch any bugs in `zcash_script`'s CI.
cc = { version = "1.0.83", features = ["parallel"] }
cc = { version = "1.0.94", features = ["parallel"] }
# Treat minor versions with a zero major version as compatible (cargo doesn't by default).
cxx-gen = ">= 0.7.107"
syn = { version = "1.0.109", features = ["full", "printing"] }