[package]
edition = "2021"
name = "vortex-jit"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for the VORTEX JIT compiler — a profile-guided optimizing JIT with input-shape-keyed profiles, phase partitioning, ensemble aggregation, T1 code persistence, and append-only crash-safe profile patching."
readme = false
keywords = [
"jit",
"compiler",
"pgo",
"bytecode",
"vm",
]
categories = [
"compilers",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/AVmakeralt/VORTEX"
[features]
assertions = []
default = []
sota = []
verify = []
[lib]
name = "vortex"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
[build-dependencies.bindgen]
version = "0.69"
[build-dependencies.cc]
version = "1.0"