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