Skip to content

Commit

Permalink
chore: enable serde feature when serialization is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on committed Jan 21, 2025
1 parent 15f4b58 commit 4b885f7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion roast-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ std = ["dep:thiserror"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["frost-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["frost-core/serialization"]
serialization = ["serde", "frost-core/serialization"]
## Exposes ciphersuite-generic tests for other crates to use.
test-impl = ["dep:rand"]
## Enable cheater detection.
Expand Down
2 changes: 1 addition & 1 deletion roast-ed25519/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-ed448/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-p256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-ristretto255/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-secp256k1-evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-secp256k1-tr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]
2 changes: 1 addition & 1 deletion roast-secp256k1/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ std = ["roast-core/std"]
## `serde` (e.g. JSON with `serde_json`).
serde = ["roast-core/serde"]
## Enable a default serialization format. Enables `serde`.
serialization = ["roast-core/serialization"]
serialization = ["serde", "roast-core/serialization"]
## Enable cheater detection.
cheater-detection = ["roast-core/cheater-detection"]

0 comments on commit 4b885f7

Please sign in to comment.