fixed_wide_vectors/fixed_wide/Cargo.toml

21 lines
574 B
TOML
Raw Normal View History

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