[package]
edition = "2024"
rust-version = "1.89"
name = "ocas-poly"
version = "0.13.1"
authors = ["oCAS Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polynomial algorithms for oCAS"
homepage = "https://github.com/charleshzh/ocas"
documentation = "https://docs.rs/ocas"
readme = false
keywords = [
"cas",
"symbolic",
"algebra",
"mathematics",
"polynomial",
]
categories = [
"science",
"mathematics",
]
license = "LGPL-3.0-or-later"
repository = "https://github.com/charleshzh/ocas"
[features]
default = []
flint = ["dep:flint3-sys"]
flint-system = [
"dep:flint3-sys",
"flint3-sys/use-system-libs",
]
gmp = [
"ocas-domain/gmp",
"dep:rug",
]
ntt = []
sprs = ["dep:sprs"]
[lib]
name = "ocas_poly"
path = "src/lib.rs"
[dependencies.flint3-sys]
version = "3.5"
optional = true
[dependencies.hashbrown]
version = "0.15"
[dependencies.num-bigint]
version = "0.4"
[dependencies.num-rational]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.ocas-core]
version = "0.13.1"
[dependencies.ocas-domain]
version = "0.13.1"
[dependencies.rug]
version = "1.27"
features = [
"integer",
"rational",
]
optional = true
default-features = false
[dependencies.smallvec]
version = "1.14"
[dependencies.sprs]
version = "0.11"
optional = true
[dev-dependencies.proptest]
version = "1.6"