[package]
edition = "2024"
rust-version = "1.89"
name = "ocas"
version = "0.13.0"
authors = ["oCAS Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "open Computer Algebra System — high-performance symbolic computation in Rust"
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"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
egg = ["ocas-rewrite/egg"]
fast-poly = ["ocas-eval/fast-poly"]
flint = ["ocas-poly/flint"]
gmp = [
"ocas-domain/gmp",
"ocas-poly/gmp",
"ocas-core/gmp",
]
gpl = ["dep:ocas-gpl"]
jit = ["ocas-eval/jit"]
mimalloc = ["dep:mimalloc"]
mpfr = ["ocas-domain/mpfr"]
ntt = ["ocas-poly/ntt"]
python = ["dep:ocas-py"]
simd = ["ocas-eval/simd"]
sprs = ["ocas-poly/sprs"]
system-libs = ["ocas-domain/system-libs"]
[lib]
name = "ocas"
path = "src/lib.rs"
[dependencies.mimalloc]
version = "0.1"
optional = true
[dependencies.ocas-atom]
version = "0.13.0"
[dependencies.ocas-calc]
version = "0.13.0"
[dependencies.ocas-core]
version = "0.13.0"
[dependencies.ocas-domain]
version = "0.13.0"
[dependencies.ocas-eval]
version = "0.13.0"
[dependencies.ocas-gpl]
version = "0.13.0"
optional = true
[dependencies.ocas-parse]
version = "0.13.0"
[dependencies.ocas-poly]
version = "0.13.0"
[dependencies.ocas-py]
version = "0.13.0"
optional = true
[dependencies.ocas-rewrite]
version = "0.13.0"
[dev-dependencies.criterion]
version = "0.5"