fixed_wide_vectors/linear_ops/Cargo.toml

23 lines
806 B
TOML
Raw Normal View History

2024-08-23 20:00:22 +00:00
[package]
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 = { version = "0.1.0", path = "../ratio_ops", registry = "strafesnet", optional = true }
fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", optional = true }
2024-09-12 17:10:04 +00:00
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]
fixed_wide = { version = "0.1.0", path = "../fixed_wide", registry = "strafesnet", features = ["wide-mul"] }