gitextract_ofu0l0m2/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── examples/ │ ├── cpu-monitor.rs │ ├── large-data.rs │ ├── mouse_events.rs │ └── split-chart/ │ ├── Cargo.toml │ ├── index.html │ └── src/ │ └── main.rs └── src/ ├── backend/ │ └── mod.rs ├── chart.rs ├── error.rs ├── lib.rs ├── renderer.rs ├── sample/ │ └── lttb.rs ├── sample.rs ├── utils.rs └── widget.rs