basis-points 0.3.2

Validated basis-points type with optional Decimal and Anchor support.
Documentation
[package]
name = "basis-points"
version = "0.3.2"
edition = "2021"
description = "Validated basis-points type with optional Decimal and Anchor support."
license = "MIT"
repository = "https://github.com/ChiefWoods/solana-math"
homepage = "https://github.com/ChiefWoods/solana-math"
documentation = "https://docs.rs/basis-points"
readme = "README.md"
keywords = ["solana", "math", "basis-points", "finance", "defi"]
categories = ["cryptography::cryptocurrencies", "data-structures", "mathematics"]
rust-version = "1.85"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE*", "CHANGELOG.md"]

[features]
default = []
anchor = ["dep:anchor-lang"]
codama = ["dep:codama"]
decimal = ["dep:rust_decimal"]
idl-build = ["anchor", "anchor-lang/idl-build"]

[dependencies]
anchor-lang = { workspace = true, optional = true }
bytemuck = { workspace = true }
codama = { workspace = true, optional = true }
rust_decimal = { workspace = true, optional = true }
thiserror = { workspace = true }

[dev-dependencies]
husky-rs = { workspace = true }

[package.metadata.docs.rs]
all-features = true