[package]
edition = "2024"
name = "agent-sim"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-first firmware SIL testing"
readme = "README.md"
categories = [
"command-line-utilities",
"simulation",
]
license = "MIT"
repository = "https://github.com/tomrford/agent-sim"
[lib]
name = "agent_sim"
path = "src/lib.rs"
[[bin]]
name = "agent-sim"
path = "src/main.rs"
[[test]]
name = "cli_can"
path = "tests/cli_can.rs"
[[test]]
name = "cli_can_dbc"
path = "tests/cli_can_dbc.rs"
[[test]]
name = "cli_env"
path = "tests/cli_env.rs"
[[test]]
name = "cli_flash"
path = "tests/cli_flash.rs"
[[test]]
name = "cli_multi_session_recipe"
path = "tests/cli_multi_session_recipe.rs"
[[test]]
name = "cli_project_instance"
path = "tests/cli_project_instance.rs"
[[test]]
name = "cli_recipe_assert"
path = "tests/cli_recipe_assert.rs"
[[test]]
name = "cli_recipes"
path = "tests/cli_recipes.rs"
[[test]]
name = "cli_session_daemon"
path = "tests/cli_session_daemon.rs"
[[test]]
name = "cli_shared"
path = "tests/cli_shared.rs"
[[test]]
name = "cli_signal_io"
path = "tests/cli_signal_io.rs"
[[test]]
name = "cli_time"
path = "tests/cli_time.rs"
[[test]]
name = "json_contract"
path = "tests/json_contract.rs"
[dependencies.can-dbc]
version = "8"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.dirs]
version = "6"
[dependencies.globset]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.libloading]
version = "0.8"
[dependencies.memmap2]
version = "0.9"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[target."cfg(windows)".dependencies.peak-can-sys]
version = "0.2.0"