[package]
edition = "2021"
name = "polynomial_subspaces"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "general ways to deal with subspaces of the polynomial rings R[X] with R some ring"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Cobord/polynomial_subspaces"
[features]
GADT = []
all = [
"GADT",
"all_stable",
]
all_stable = [
"pade",
"bezier",
"jacobi",
]
bezier = [
"dep:bezier-rs",
"dep:glam",
]
jacobi = [
"orthogonal",
"dep:lazy_static",
]
orthogonal = []
pade = []
[lib]
name = "polynomial_subspaces"
path = "src/lib.rs"
[[example]]
name = "full_example"
path = "examples/full_example.rs"
[dependencies.bezier-rs]
version = "0.4.0"
optional = true
[dependencies.fast_polynomial]
version = "0.1.0"
[dependencies.glam]
version = "0.28.0"
optional = true
[dependencies.lazy_static]
version = "^1.5.0"
optional = true