simular 0.3.1

Unified Simulation Engine for the Sovereign AI Stack
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75.0"
name = "simular"
version = "0.3.1"
authors = ["PAIML Engineering"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified Simulation Engine for the Sovereign AI Stack"
readme = "README.md"
keywords = [
    "simulation",
    "physics",
    "monte-carlo",
    "optimization",
    "reproducible",
]
categories = [
    "simulation",
    "science",
    "mathematics",
]
license = "MIT"
repository = "https://github.com/paiml/simular"

[package.metadata.wasm-pack.profile.release]
wasm-opt = false

[features]
default = []
full = [
    "tui",
    "web",
]
proptest = []
schema-validation = []
tui = [
    "dep:ratatui",
    "dep:crossterm",
    "dep:presentar-terminal",
    "dep:presentar-core",
]
verification = []
wasm = [
    "dep:wasm-bindgen",
    "dep:js-sys",
    "dep:web-sys",
    "dep:getrandom",
    "dep:serde-wasm-bindgen",
    "dep:console_error_panic_hook",
]
web = ["dep:tokio"]
z3-proofs = []

[lib]
name = "simular"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "orbit-tui"
path = "src/bin/orbit_tui.rs"
required-features = ["tui"]

[[bin]]
name = "simular"
path = "src/main.rs"

[[bin]]
name = "tsp-tui"
path = "src/bin/tsp_tui.rs"
required-features = ["tui"]

[[example]]
name = "edd_falsification"
path = "examples/edd_falsification.rs"

[[example]]
name = "edd_model_card"
path = "examples/edd_model_card.rs"

[[example]]
name = "edd_operations"
path = "examples/edd_operations.rs"

[[example]]
name = "edd_tps_validation"
path = "examples/edd_tps_validation.rs"

[[example]]
name = "edd_yaml_loader"
path = "examples/edd_yaml_loader.rs"

[[example]]
name = "gui_coverage_demo"
path = "examples/gui_coverage_demo.rs"

[[example]]
name = "jidoka_guards"
path = "examples/jidoka_guards.rs"

[[example]]
name = "monte_carlo"
path = "examples/monte_carlo.rs"

[[example]]
name = "optimization"
path = "examples/optimization.rs"

[[example]]
name = "orbit_demo"
path = "examples/orbit_demo.rs"

[[example]]
name = "physics_simulation"
path = "examples/physics_simulation.rs"

[[example]]
name = "reproducibility"
path = "examples/reproducibility.rs"

[[example]]
name = "tsp_grasp_demo"
path = "examples/tsp_grasp_demo.rs"

[[test]]
name = "orbit_e2e"
path = "tests/orbit_e2e.rs"

[[test]]
name = "probar_demos"
path = "tests/probar_demos.rs"

[[test]]
name = "probar_tsp"
path = "tests/probar_tsp.rs"

[[test]]
name = "qa_reproducibility"
path = "tests/qa_reproducibility.rs"

[[bench]]
name = "simulation_benchmarks"
path = "benches/simulation_benchmarks.rs"
harness = false

[dependencies.bincode]
version = "1.3"

[dependencies.bitflags]
version = "2.6"

[dependencies.blake3]
version = "1.5"

[dependencies.console_error_panic_hook]
version = "0.1"
optional = true

[dependencies.crossbeam-deque]
version = "0.8"

[dependencies.crossterm]
version = "0.28"
optional = true

[dependencies.getrandom]
version = "0.2"
features = ["js"]
optional = true

[dependencies.indexmap]
version = "2.0"
features = ["serde"]

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.memmap2]
version = "0.9"

[dependencies.num-traits]
version = "0.2"

[dependencies.presentar-core]
version = "0.3"
optional = true
default-features = false

[dependencies.presentar-terminal]
version = "0.3"
optional = true

[dependencies.rand]
version = "0.8"

[dependencies.rand_pcg]
version = "0.3"
features = ["serde1"]

[dependencies.ratatui]
version = "0.29"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.0"
features = ["full"]
optional = true

[dependencies.toml]
version = "0.8"

[dependencies.uom]
version = "0.36"
features = ["serde"]

[dependencies.validator]
version = "0.20"
features = ["derive"]

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dependencies.web-sys]
version = "0.3"
features = [
    "console",
    "Window",
    "Performance",
    "Document",
    "Element",
    "HtmlElement",
    "HtmlCanvasElement",
    "HtmlInputElement",
    "HtmlSelectElement",
    "CanvasRenderingContext2d",
    "EventTarget",
    "Event",
    "NodeList",
    "DomTokenList",
    "CssStyleDeclaration",
]
optional = true

[dependencies.zstd]
version = "0.13"

[dev-dependencies.criterion]
version = "0.5"
default-features = false

[dev-dependencies.presentar-test]
version = "0.3"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.tempfile]
version = "3.14"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "deny"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1