[package]
edition = "2024"
name = "netrun-sim"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flow-based development (FBD) simulation engine."
readme = false
license-file = "LICENSE"
repository = "https://github.com/lukastk/netrun/"
[features]
default = []
python = ["pyo3"]
[lib]
name = "netrun_sim"
path = "src/lib.rs"
[[example]]
name = "diamond_flow"
path = "examples/diamond_flow.rs"
[[example]]
name = "linear_flow"
path = "examples/linear_flow.rs"
[[test]]
name = "graph_api"
path = "tests/graph_api.rs"
[[test]]
name = "net_api"
path = "tests/net_api.rs"
[[test]]
name = "workflow"
path = "tests/workflow.rs"
[dependencies.indexmap]
version = "2.12.1"
[dependencies.pyo3]
version = "0.23"
features = ["abi3-py38"]
optional = true
[dependencies.thiserror]
version = "2.0"
[dependencies.ulid]
version = "=1.1.0"
[dependencies.utcnow]
version = "0.2.7"