jsonapi-rust
jsonapi-rust copied to clipboard
Rust library for serialization, deserialization and working with JSON-API data
Hi, for now ,the following example will generate 4 chapters with id =1 : ```rust let book = vec![ Book { id: "1".into(), title: "The Fellowship of the Ring".into(), first_chapter:...
_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...
remove two tests inside the Readme that should not be run as they are not complete.
Closes #53 Went through adding optional support by adding a new keyword to the macro `has optional`. I have not gone through and added all of the matches yet, I...
Was going through the tests while working on another PR and noticed that the doc tests fail (and the documentation in `lib.rs` doesn't seem to be correct). I tried to...
Thanks for providing this crate, I've found it really useful as a base for my jsonapi implementation. One problem that I've run into is that the jsonapi spec allows `id`...
Hi there! Great library, I had a few questions after reading the docs and reading through some of the test cases. Some things aren't immediately apparent so I'd love some...
Instead of creating something like this: ```json "data": { "type": "inventory-purchase-order", "attributes": { "purchase-order-lines": [ { "parts": [], "price": "99.99", "purchase-order": null, "purchased-quantity": 1, "sku": { "assembly-configurations": [], "description": null,...
The crate should be tested against an integration-test-compatible local web server which provides the JSON API. This could be done by having a `tests/common` module, which would be responsible for...