polynomial_subspaces 0.3.0

general ways to deal with subspaces of the polynomial rings R[X] with R some ring
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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