[package]
edition = "2021"
name = "symjit"
version = "2.25.4"
authors = ["Shahriar Iravanian <siravan@svtsim.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a lightweight just-in-time (JIT) optimizer compiler"
readme = "README.md"
keywords = [
"compiler",
"JIT",
"computer-algebra",
]
categories = [
"compilers",
"hardware-support",
"mathematics",
]
license = "MIT"
repository = "https://github.com/siravan/symjit"
[features]
default = ["symbolica"]
selinux-fix = ["memmap2"]
symbolica = []
[lib]
name = "symjit"
crate-type = ["rlib"]
path = "src/lib.rs"
[[bin]]
name = "bug"
path = "src/bug_fp_preserve.rs"
[[bin]]
name = "funcs"
path = "src/funcs.rs"
[[bin]]
name = "kernels"
path = "src/kernels.rs"
[[bin]]
name = "profiler"
path = "src/profile.rs"
[[bin]]
name = "simple"
path = "src/simple.rs"
[[bin]]
name = "test"
path = "src/bin.rs"
[dependencies.ahash]
version = "0.8"
[dependencies.anyhow]
version = "1"
[dependencies.hashbrown]
version = "0.16.0"
[dependencies.hugepage-rs]
version = "0.1"
[dependencies.lazy_static]
version = "1.5"
[dependencies.libc]
version = "0.2"
[dependencies.memmap2]
version = "0.9"
optional = true
[dependencies.num-complex]
version = "0.4.6"
[dependencies.num-rational]
version = "0.4"
[dependencies.num-traits]
version = "0.2"
[dependencies.rand]
version = "0.9"
[dependencies.rayon]
version = "1.1"
[dependencies.region]
version = "3.0.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.spec_math]
version = "0.1.6"
[dependencies.toml]
version = "1.1"
[dependencies.wasmtime-jit-icache-coherence]
version = "34.0"
[dependencies.wide]
version = "1.1"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = ["Win32_System_Memory"]
[profile.profiling]
debug = 2
inherits = "release"