changes-stream-rust icon indicating copy to clipboard operation
changes-stream-rust copied to clipboard

a changes stream for couchdb style APIs - written in Rust

Results 6 changes-stream-rust issues
Sort by recently updated
recently updated
newest added

* Update dependency versions. * Update to Rust 2018 and async/await. * Switch to reqwest for BasicAuth support. * Implement `futures::Stream` instead of handlers logic. * Add `Finished` event. *...

https://github.com/ashleygwilliams/changes-stream-rust/blob/master/src/lib.rs#L17 The reactor is only used in the `run` method, so might as well create it there instead of saving it.

enhancement

``` { db: 'http://localhost:5984/my_db', // full database URL feed: 'continuous', // Can also be longpoll technically but not currently implemented filter: 'docs/whatever', // Can be a defined couchdb view, a...