[package]
edition = "2024"
name = "aisimulate-core"
version = "0.1.0-dev.2"
authors = ["NVIDIA Inc. <sw-dl-dynamo@nvidia.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Engine-neutral inference simulation, deterministic replay, and performance modeling"
homepage = "https://github.com/ai-dynamo/aisimulate"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ai-dynamo/aisimulate.git"
[features]
default = []
embed-python = [
"python",
"pyo3/auto-initialize",
]
extension-module = [
"python",
"pyo3/extension-module",
]
python = ["dep:pyo3"]
replay-bench = []
[lib]
name = "aisimulate_core"
crate-type = [
"rlib",
"cdylib",
]
path = "src/lib.rs"
[[test]]
name = "artifacts"
path = "tests/artifacts.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "facade"
path = "tests/facade.rs"
[[test]]
name = "firewall"
path = "tests/firewall.rs"
[[test]]
name = "perfmodel_embedded_round_trip"
path = "tests/perfmodel_embedded_round_trip.rs"
[[test]]
name = "perfmodel_memory_round_trip"
path = "tests/perfmodel_memory_round_trip.rs"
[[test]]
name = "perfmodel_pyo3_smoke"
path = "tests/perfmodel_pyo3_smoke.rs"
[[test]]
name = "runtime_contract"
path = "tests/runtime_contract.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1"
[dependencies.ddsketchy]
version = "0.1.7"
[dependencies.derive_builder]
version = "0.20"
[dependencies.flate2]
version = "1"
[dependencies.indicatif]
version = "0.18"
[dependencies.parquet]
version = "55"
features = [
"zstd",
"snap",
]
default-features = false
[dependencies.pep440_rs]
version = "0.7.3"
[dependencies.pyo3]
version = "0.23.4"
features = ["abi3-py311"]
optional = true
[dependencies.quick_cache]
version = "0.7.0"
[dependencies.rand]
version = "0.9.2"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.slotmap]
version = "1"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.18.1"
features = [
"v4",
"serde",
]
[dependencies.xxhash-rust]
version = "0.8"
features = [
"xxh3",
"const_xxh3",
]
[dev-dependencies.rstest]
version = "0.18.2"
[dev-dependencies.tempfile]
version = "3"