We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
rust 0.15 was just released and with it custom derive!
derive
Serde released version 0.9, which is now incompatible with this library:
error[E0308]: mismatched types --> src/api/handler.rs:40:12 | 40 | Ok(value) | ^^^^^ expected enum `jsonrpc_core::Value`, found enum `serde_json::Value` | = note: expected type `jsonrpc_core::Value` = note: found type `serde_json::Value`
migrating shouldn't be difficult. If you would like, I can open a pull request.
The text was updated successfully, but these errors were encountered:
It's already fixed in #38, we're just awaiting to release a new version which should happen soon.
Sorry, something went wrong.
jsonrpc-core = 6.0 with serde-0.9 was just recently released, make sure to try it out :)
jsonrpc-core = 6.0
awesome thanks! Great library btw -- I use it with nickel (currently) and it integrates seamlessly.
No branches or pull requests
rust 0.15 was just released and with it custom
derive
!Serde released version 0.9, which is now incompatible with this library:
migrating shouldn't be difficult. If you would like, I can open a pull request.
The text was updated successfully, but these errors were encountered: