fixed_wide_vectors/linear_ops/Cargo.toml

16 lines
329 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-08-27 00:28:33 +00:00
[features]
2024-09-10 17:02:11 +00:00
default=["named-fields"]
2024-09-05 19:49:20 +00:00
named-fields=[]
2024-09-11 19:20:17 +00:00
deferred-division=["dep:ratio_ops"]
[dependencies]
ratio_ops = { path = "../ratio_ops", optional = true }
2024-08-27 00:28:33 +00:00
2024-09-10 17:02:11 +00:00
[dev-dependencies]
2024-09-11 19:59:22 +00:00
fixed_wide = { version = "0.1.0", path = "../fixed_wide", features = ["wide-mul"] }