use-bun 0.0.1

Bun runtime metadata primitives for RustUse
Documentation
# use-bun

Bun runtime metadata primitives for `RustUse`.

## Experimental

`use-bun` is experimental while `use-js` remains below `0.3.0`.

## Example

```rust
use use_bun::{BunCommand, BunLockfile, BunVersion};

let version: BunVersion = "1.1.8".parse()?;

assert_eq!(version.major(), 1);
assert_eq!("install".parse::<BunCommand>()?, BunCommand::Install);
assert_eq!(BunLockfile::Binary.as_str(), "bun.lockb");
# Ok::<(), Box<dyn std::error::Error>>(())
```

## Scope

- Bun version labels.
- Common command labels.
- Lockfile labels.

## Non-goals

- Running Bun.
- Package installation.
- Lockfile parsing.

## License

Licensed under either Apache-2.0 or MIT.