zcash_client_backend: Enable `zcash_keys/unstable` feature flag

Due to `zcash_keys` being in `zcash_client_backend`'s public API, their
unstable APIs are a common API surface (as they were before `zcash_keys`
was extracted).

This can be reverted once `zcash_keys` types with unstable APIs are not
being re-exported from `zcash_client_backend`.
This commit is contained in:
Jack Grigg 2024-01-22 17:51:39 +00:00
parent 28e36dc57b
commit 193e0b2a29
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ test-dependencies = [
#! ### Experimental features
## Exposes unstable APIs. Their behaviour may change at any time.
unstable = ["dep:byteorder"]
unstable = ["dep:byteorder", "zcash_keys/unstable"]
## Exposes APIs for unstable serialization formats. These may change at any time.
unstable-serialization = ["dep:byteorder"]