mneumann / rust-msgpack

[DEPRECATED] msgpack.org implementation for Rust language. Please use https://github.com/3Hren/msgpack-rust
122 stars 31 forks source link

Rust nightly rollup (macro + serialize fn bounds) #39

Closed drbawb closed 9 years ago

drbawb commented 9 years ago

This rolls up two changes:

  1. Some of the Fn trait bounds used in libserialize changed upstream. They're now FnMut so they can be called multiple times. We do not take advantage of this; but the bound still needs to be updated.
  2. Macros which expand to items now need a trailing semi-colon