Add crates.io metadata, license, and installation docs

This commit is contained in:
PatchRequest
2026-06-04 12:58:54 +02:00
parent 65c8299d4e
commit ced2a7ae18
3 changed files with 43 additions and 0 deletions
+16
View File
@@ -12,6 +12,22 @@ BusyWork fills those gaps with **genuine, varied activity** — real syscalls, r
**Zero time objects** in the library binary. No `Duration`, no `Instant`, no `SystemTime`. Nothing for static analysis to latch onto as a timing mechanism.
## Installation
Add to your `Cargo.toml`:
```toml
[dependencies]
busywork = "0.1"
```
Or with only specific categories (faster compile, smaller binary):
```toml
[dependencies]
busywork = { version = "0.1", default-features = false, features = ["cat-compute", "cat-memory", "cat-winapi"] }
```
## Usage
```rust