2024-08-23 13:00:22 -07:00
|
|
|
[package]
|
|
|
|
name = "fixed_wide"
|
2024-10-01 15:02:15 -07:00
|
|
|
version = "0.1.1"
|
2024-08-23 13:00:22 -07:00
|
|
|
edition = "2021"
|
2025-01-03 03:42:20 -08:00
|
|
|
repository = "https://git.itzana.me/StrafesNET/strafe-project"
|
2024-09-30 10:18:25 -07:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "Fixed point numbers with optional widening Mul operator."
|
|
|
|
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
|
2024-08-23 13:00:22 -07:00
|
|
|
|
2024-08-26 17:28:33 -07:00
|
|
|
[features]
|
2024-09-11 12:59:22 -07:00
|
|
|
default=[]
|
2024-09-10 12:04:18 -07:00
|
|
|
deferred-division=["dep:ratio_ops"]
|
2024-09-06 12:49:10 -07:00
|
|
|
wide-mul=[]
|
2024-09-10 11:26:46 -07:00
|
|
|
zeroes=["dep:arrayvec"]
|
2024-08-26 17:28:33 -07:00
|
|
|
|
2024-08-23 13:00:22 -07:00
|
|
|
[dependencies]
|
2024-09-25 10:03:09 -07:00
|
|
|
bnum = "0.12.0"
|
2024-09-02 16:15:17 -07:00
|
|
|
arrayvec = { version = "0.7.6", optional = true }
|
2024-09-05 13:16:02 -07:00
|
|
|
paste = "1.0.15"
|
2025-01-02 20:22:05 -08:00
|
|
|
ratio_ops = { path = "../ratio_ops", registry = "strafesnet", optional = true }
|