libcros 0.4.0

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Rules for writing in this repository

Agents writing in this repository should always follow these coding rules:
- Little to no comments:
  - The only comments in the repository should be for extremely complicated / hard-to-read code.
  - Comments should be in `/* format */` or whatever the equivalent is for that language.
- use Google's coding style
- 2-space tabs
- Look at `rustfmt.toml` for styling ALWAYS
- For any examples on how to use the code, they will be in `examples/`
- Any reference material will be inside `reference/`
- Whenever launching a script from `scripts/`, always run it as root via `sudo`, but ask the user first before running it.
- We mainly use `cargo` here.
- When the user requests a code or workflow change, apply the patch directly unless the user explicitly asks not to.