Lightning Talks
Topics:
- Permute via @nickniemeir
- Rusty Notifications via @gabrielfinke
- GraphQL via @BlaineBublitz
- Mandelbrot Plotter via @DanielPBank
Mandelbrot Plotter via @DanielPBank
A Mandelbrot plotter which is the first example project in the Programming Rust book by Blandy and Orendorff.
Repo: https://github.com/danielbank/mandelbrot
Permute via @nickniemeir
A project that iterates over the permutations of a sorted vector.
Repo: https://github.com/nrn/permute-sorted
Rusty Notifications via @gabrielfinke
A rust notification system using notify-send.
Repo: https://github.com/finkegabriel/rustful-notifications
GraphQL via @BlaineBublitz
GraphQL Server implemented with Iron, Diesel and Juniper
Repo: https://github.com/phated/twentyfive-stars
- Using cargo expand to see what macros are doing under the hood.
- Old style vs the new style of mods (Rust Modules). See Defining Modules to Control Scope and Privacy
Crates You Should Know
- bitmatch: A macro to allow matching, binding, and packing the individual bits of integers.
- diesel: A safe, extensible ORM and Query Builder for PostgreSQL, SQLite, and MySQL
- juniper is no longer a crate Blaine thinks should know, see async-graphql instead