23 lines
674 B
TOML
23 lines
674 B
TOML
[package]
|
|
name = "linear_ops"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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>"]
|
|
|
|
[features]
|
|
default=["named-fields","fixed-wide"]
|
|
named-fields=[]
|
|
fixed-wide=["dep:fixed_wide","dep:paste"]
|
|
deferred-division=["dep:ratio_ops"]
|
|
|
|
[dependencies]
|
|
ratio_ops = { path = "../ratio_ops", optional = true }
|
|
fixed_wide = { path = "../fixed_wide", optional = true }
|
|
paste = { version = "1.0.15", optional = true }
|
|
|
|
[dev-dependencies]
|
|
fixed_wide = { path = "../fixed_wide", features = ["wide-mul"] }
|