40 releases

0.3.33 Sep 7, 2023
0.3.32 Mar 18, 2023
0.3.31 Sep 10, 2022
0.3.30 Jul 24, 2022
0.1.0 Mar 18, 2018

#79 in Asynchronous

Download history 1776/week @ 2024-01-03 2104/week @ 2024-01-10 2280/week @ 2024-01-17 2579/week @ 2024-01-24 2708/week @ 2024-01-31 3056/week @ 2024-02-07 2595/week @ 2024-02-14 2762/week @ 2024-02-21 2347/week @ 2024-02-28 2640/week @ 2024-03-06 2496/week @ 2024-03-13 2736/week @ 2024-03-20 2133/week @ 2024-03-27 1982/week @ 2024-04-03 2022/week @ 2024-04-10 1901/week @ 2024-04-17

8,568 downloads per month
Used in 46 crates (25 directly)

MIT license

275KB
5.5K SLoC

crates.io docs.rs

This is a Rust crate that provides zero-cost FRP Signals which are built on top of the futures crate.

Hold on, zero-cost? Yup, that's right: if you don't use a feature you don't pay any performance cost, and the features that you do use are as fast as possible. Signals are very efficient.

What is a Signal? It is a value that changes over time, and you can be efficiently notified whenever its value changes.

This is useful in many situations:

  • You can automatically serialize your program's state to a database whenever it changes.

  • You can automatically send a message to the server whenever the client's state changes, or vice versa. This can be used to automatically, efficiently, and conveniently keep the client and server's state in sync.

  • A game engine can use Signals to automatically update the game's state whenever something changes.

  • You can easily represent continuous input (such as the current temperature, or the current time) as a Signal.

  • If you create a GUI, you can use Signals to automatically update the GUI whenever your state changes, ensuring that your state and the GUI are always in sync.

  • You can use dominator to create web apps and automatically keep them in sync with your program's state.

  • And many more situations!

The best way to learn more is to read the tutorial.

Dependencies

~1.3–2.1MB
~43K SLoC