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