[package]
edition = "2021"
name = "runmat-runtime"
version = "0.4.1"
authors = ["Dystr Team"]
build = "build.rs"
links = "runmat_runtime_native"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs"
homepage = "https://runmat.com"
readme = false
license = "MIT"
license-file = "LICENSE"
repository = "https://github.com/runmat-org/runmat"
[features]
blas-lapack = [
"blas",
"lapack",
"accelerate-src",
"openblas-src",
]
blas-only = [
"blas",
"accelerate-src",
"openblas-src",
]
default = ["plot-core"]
gui = [
"plot-core",
"runmat-plot/gui",
"runmat-plot/static",
]
interaction-test-hooks = []
jupyter = [
"plot-core",
"runmat-plot/jupyter",
"runmat-plot/static",
]
plot-core = ["dep:runmat-plot"]
plot-web = [
"plot-core",
"runmat-plot/web",
"runmat-plot/static",
]
test-classes = []
wgpu = []
[lib]
name = "runmat_runtime"
path = "src/lib.rs"
[[test]]
name = "blas_lapack"
path = "tests/blas_lapack.rs"
[[test]]
name = "builtins_variants"
path = "tests/builtins_variants.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "elementwise_negation"
path = "tests/elementwise_negation.rs"
[[test]]
name = "filesystem_provider_tests"
path = "tests/filesystem_provider_tests.rs"
[[test]]
name = "handles"
path = "tests/handles.rs"
[[test]]
name = "integers"
path = "tests/integers.rs"
[[test]]
name = "logicals"
path = "tests/logicals.rs"
[[test]]
name = "matrix_ops"
path = "tests/matrix_ops.rs"
[[test]]
name = "nd_ops"
path = "tests/nd_ops.rs"
[[test]]
name = "power_operations"
path = "tests/power_operations.rs"
[[test]]
name = "reduction_parity"
path = "tests/reduction_parity.rs"
[[test]]
name = "rng"
path = "tests/rng.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-recursion]
version = "1.1"
[dependencies.base64]
version = "0.22"
[dependencies.blas]
version = "0.22"
optional = true
[dependencies.chrono]
version = "0.4.42"
features = ["serde"]
[dependencies.encoding_rs]
version = "0.8.35"
[dependencies.futures]
version = "0.3"
[dependencies.glam]
version = "0.24"
[dependencies.glob]
version = "0.3"
[dependencies.inventory]
version = "0.1"
[dependencies.lapack]
version = "0.19"
optional = true
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4"
[dependencies.nalgebra]
version = "0.32"
[dependencies.num-complex]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.once_cell]
version = "1.19"
[dependencies.regex]
version = "1.11.1"
[dependencies.runmat-accelerate-api]
version = "=0.4.1"
features = ["wgpu"]
[dependencies.runmat-async]
version = "=0.4.1"
[dependencies.runmat-builtins]
version = "=0.4.1"
[dependencies.runmat-filesystem]
version = "=0.4.1"
[dependencies.runmat-gc]
version = "=0.4.1"
[dependencies.runmat-gc-api]
version = "=0.4.1"
[dependencies.runmat-hir]
version = "=0.4.1"
[dependencies.runmat-macros]
version = "=0.4.1"
[dependencies.runmat-plot]
version = "=0.4.1"
optional = true
default-features = false
[dependencies.runmat-thread-local]
version = "=0.4.1"
[dependencies.runmat-time]
version = "=0.4.1"
[dependencies.rustfft]
version = "6.2"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"charset",
"gzip",
"json",
"rustls-tls",
]
default-features = false
[target.'cfg(not(target_os = "macos"))'.dependencies.openblas-src]
version = "0.10"
features = [
"system",
"cblas",
]
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.js-sys]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen-futures]
version = "0.4"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"XmlHttpRequest",
"XmlHttpRequestResponseType",
"Window",
"TextDecoder",
"DomException",
"CustomEvent",
"CustomEventInit",
"EventTarget",
]
[target.'cfg(target_os = "macos")'.dependencies.accelerate-src]
version = "0.3"
optional = true