Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use serde content for token enum #7

Merged
merged 1 commit into from
Apr 24, 2024
Merged

fix: use serde content for token enum #7

merged 1 commit into from
Apr 24, 2024

Conversation

woile
Copy link
Contributor

@woile woile commented Apr 24, 2024

BREAKING CHANGE:
json output is no longer like:

{"token": "Ingredient", "name": "foo", "amount": "1", "unit": "gr"}

now:

{"token": "Ingredient", "content": {"name": "foo", "amount": "1", "unit": "gr"}}

The problem is that serde was failing to serialize enum variants that contained a single string

@woile woile enabled auto-merge April 24, 2024 07:55
BREAKING CHANGE:
json output is no longer like:
```json
{"token": "Ingredient", "name": "foo", "amount": "1", "unit": "gr"}
```
now:
```json
{"token": "Ingredient", "content": {"name": "foo", "amount": "1", "unit": "gr"}}
```
The problem is that serde was failing to serialize enum variants that contained a single string
@woile woile merged commit dc9c4cc into main Apr 24, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant