JSONRPCKit icon indicating copy to clipboard operation
JSONRPCKit copied to clipboard

A type-safe JSON-RPC 2.0 library purely written in Swift

Results 9 JSONRPCKit issues
Sort by recently updated
recently updated
newest added

**Problem** Unable to build JSONRPCKit with Xcode 12, error log: ``` ➜ JSONRPCKit git:(master) swift build Fetching https://github.com/antitypical/Result.git error: because no versions of Result match the requirement 3.2.6..

Support SPM 5.2 - Updated SPM tools version - bump Result to 5.0.0 up - removed Package.resolved

Thank you for your support in beforehand. I supported Xcode10, Swift4.2. Please review changes when you have time. #### References - [PackageDescription API Version 4.2](https://github.com/apple/swift-package-manager/blob/master/Documentation/PackageDescriptionV4_2.md)

Hello, I'm done with my app and working on it but it looks like that JSONRPC has limit for requests. I used about 20 times and it worked perfectly then...

After code review I have question. What if I need to create Batch request that contains more than 6 commas? How should I solve this ?

Now that Swift 4 has quite nice JSONDecoder functionality, could we support that using passing instances of Data or Decoder instead of the JSON Dictionary? Currently the Request gets Any...