[Notes](notes) # Crates ## [notify](https://crates.io/crates/notify) Permet d'être informé de toute modification du système de fichier.   [exemple](https://docs.rs/notify/latest/notify/) ## [preferences](https://crates.io/crates/preferences) Une bibliothèque pour sauvegarder des préférences pour une application, s'adapte à l'OS. ## [pest](https://crates.io/crates/pest) Exemple ([à tester ici](https://pest-parser.github.io/#editor)) : > `alpha = { 'a'..'z' | 'A'..'Z' }` > `digit = { '0'..'9' }` > `cars = {" " | "\\""}` > `ident = { (alpha | digit)+ }` > `txt = { (alpha | digit | cars)+ }` > `text = { """ ~ txt ~ """ }` > `ident\_list = { !digit ~ ident ~ (" " ~ ident)+ }` > `text\_list = { text ~ (" " ~ text)+ }` ## [calamine](https://crates.io/crates/calamine) Bibliothèque de traitement de fichier Excel. ## [markdown](https://crates.io/crates/markdown) > `markdown = "0.3"`