[package]
edition = "2024"
rust-version = "1.97"
name = "ocas-core"
version = "0.26.0"
authors = ["oCAS Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core runtime, memory management, and numerical backend glue 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 = []
gmp = [
"dep:gmp",
"dep:num-bigint",
]
serde = ["dep:serde"]
[lib]
name = "ocas_core"
path = "src/lib.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.gmp]
version = "1.27"
optional = true
package = "rug"
[dependencies.num-bigint]
version = "0.4"
optional = true
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.proptest]
version = "1.6"