[[bin]]
name = "rustylink"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bincode]
features = ["serde"]
version = "2.0.1"
[dependencies.camino]
version = "1.1"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.eframe]
default-features = true
features = ["wgpu"]
optional = true
version = "0.32"
[dependencies.egui]
optional = true
version = "0.32"
[dependencies.html-escape]
version = "0.2"
[dependencies.once_cell]
optional = true
version = "1.20"
[dependencies.quick-xml]
version = "0.38"
[dependencies.rayon]
version = "1.11"
[dependencies.roxmltree]
version = "0.20"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.syntect]
optional = true
version = "4.6"
[dependencies.walkdir]
version = "2.3"
[dependencies.zip]
default-features = false
features = ["deflate"]
version = "0.6"
[dev-dependencies.tempfile]
version = "3.10"
[[example]]
name = "binary_benchmark"
path = "examples/binary_benchmark.rs"
[[example]]
name = "egui_viewer"
path = "examples/egui_viewer.rs"
[[example]]
name = "find_manual_switches"
path = "examples/find_manual_switches.rs"
[[example]]
name = "tree"
path = "examples/tree.rs"
[features]
egui = ["dep:eframe", "dep:egui", "dep:syntect", "dep:once_cell"]
highlight = ["dep:syntect", "dep:once_cell"]
mask = []
[lib]
name = "rustylink"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Visualize & analyze Simulink .slx files"
edition = "2024"
homepage = "https://github.com/ulikoehler/rustylink"
license = "Apache-2.0"
name = "rustylink"
readme = "README.md"
repository = "https://github.com/ulikoehler/rustylink"
version = "1.2.0"
[[test]]
name = "binary_serialization"
path = "tests/binary_serialization.rs"
[[test]]
name = "block_sid"
path = "tests/block_sid.rs"
[[test]]
name = "chart"
path = "tests/chart.rs"
[[test]]
name = "egui_app_geometry"
path = "tests/egui_app_geometry.rs"
[[test]]
name = "egui_app_navigation"
path = "tests/egui_app_navigation.rs"
[[test]]
name = "egui_app_text"
path = "tests/egui_app_text.rs"
[[test]]
name = "instance_data"
path = "tests/instance_data.rs"
[[test]]
name = "label_place"
path = "tests/label_place.rs"
[[test]]
name = "lines"
path = "tests/lines.rs"
[[test]]
name = "mask"
path = "tests/mask.rs"
[[test]]
name = "mask_eval"
path = "tests/mask_eval.rs"