23 lines
745 B
TOML
Raw Normal View History

2024-08-23 13:00:22 -07:00
[package]
name = "linear_ops"
2024-08-23 13:00:22 -07:00
version = "0.1.0"
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 = "Vector/Matrix operations using trait bounds."
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-12 10:10:04 -07:00
default=["named-fields","fixed-wide"]
2024-09-05 12:49:20 -07:00
named-fields=[]
2024-09-12 10:10:04 -07:00
fixed-wide=["dep:fixed_wide","dep:paste"]
2024-09-11 12:20:17 -07:00
deferred-division=["dep:ratio_ops"]
[dependencies]
2025-01-02 20:22:05 -08:00
ratio_ops = { path = "../ratio_ops", registry = "strafesnet", optional = true }
fixed_wide = { path = "../fixed_wide", registry = "strafesnet", optional = true }
2024-09-12 10:10:04 -07:00
paste = { version = "1.0.15", optional = true }
2024-08-26 17:28:33 -07:00
2024-09-10 10:02:11 -07:00
[dev-dependencies]
2025-01-02 20:22:05 -08:00
fixed_wide = { path = "../fixed_wide", registry = "strafesnet", features = ["wide-mul"] }