basis-points 0.3.2

Validated basis-points type with optional Decimal and Anchor support.
Documentation
# Changelog

## 0.3.2
- Bumped `anchor-lang` to 1.0.2.
- Bumped `rust_decimal` to 1.42.0.

## 0.3.1
- Added optional `codama` feature with `CodamaType` derive support for `BasisPoints`.

## 0.3.0
- **Breaking:** `From<BasisPoints> for Decimal` now returns a proportional rate in `0..=1` (divides by `10_000`) instead of the raw basis-points count.
- **Breaking:** `TryFrom<Decimal> for BasisPoints` now expects a proportional rate and multiplies by `10_000` before validation.

## 0.1.3
- Added checked arithmetic helpers: `checked_add`, `checked_sub`, `checked_mul`, and `checked_div`.

## 0.1.2
- Added top-level crate and error module documentation comments.

## 0.1.1
- Replaced `cargo-husky` with `husky-rs` for local Git hook management.

## 0.1.0
- Initial release.