Maxim Vorobjov

Results 36 comments of Maxim Vorobjov

There is a different way to pass data from middleware now `ReqData` so that might be a better way to modify the schema via wrapped types? https://github.com/wafflespeanut/paperclip/issues/300

You can define error codes with better reusability and convenience via `api_v2_errors` macros on Error type. There is good example in docs https://paperclip.waffles.space/actix-plugin.html

Thank you @wafflespeanut for a great project, it was spot on for our needs when we were looking at solution to generate swagger from our established actix APIs. Design idea...

@insanitybit I guess memory copy is faster than iterator over elements. It's quite easy to reproduce and speed difference is orders of magnitude https://github.com/dunnock/ipc-bench/blob/master/benches/bincode.rs: For a simple struct ``` #[derive(Serialize,...

I figured it out, the bridge is exporting definitions but not the implementations, to make cc linker to pick implementations from Rust those also should be exported as rust_static_library, e.g...

Also please consider that peerDependencies usually defined as a range, while dependencies as exact version, e.g. ``` "dependencies": { "react": "^15.4.1", "react-dom": "^15.4.1" }, "peerDependencies": { "react": ">=0.14.0", "react-dom": ">=0.14.0"...