[package]
edition = "2024"
name = "aisimulate-core"
version = "0.1.0-dev.1"
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 and deterministic replay runtime"
homepage = "https://github.com/ai-dynamo/dynamo"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ai-dynamo/dynamo.git"
[features]
default = []
replay-bench = []
[lib]
name = "aisimulate_core"
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 = "runtime_contract"
path = "tests/runtime_contract.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.ddsketchy]
version = "0.1.7"
[dependencies.derive_builder]
version = "0.20"
[dependencies.indicatif]
version = "0.18"
[dependencies.rand]
version = "0.9.2"
[dependencies.rustc-hash]
version = "2"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1"
[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"