[package]
edition = "2024"
name = "rustylink"
version = "2.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Visualize & analyze Simulink .slx files"
homepage = "https://github.com/ulikoehler/rustylink"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ulikoehler/rustylink"
[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"
[[bin]]
name = "rustylink"
path = "src/main.rs"
[[example]]
name = "analyze_libraries"
path = "examples/analyze_libraries.rs"
[[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 = "list_blocks"
path = "examples/list_blocks.rs"
[[example]]
name = "roundtrip_compare"
path = "examples/roundtrip_compare.rs"
[[example]]
name = "tree"
path = "examples/tree.rs"
[[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 = "graphical_interface"
path = "tests/graphical_interface.rs"
[[test]]
name = "instance_data"
path = "tests/instance_data.rs"
[[test]]
name = "label_place"
path = "tests/label_place.rs"
[[test]]
name = "library_resolver"
path = "tests/library_resolver.rs"
[[test]]
name = "lines"
path = "tests/lines.rs"
[[test]]
name = "mask"
path = "tests/mask.rs"
[[test]]
name = "mask_eval"
path = "tests/mask_eval.rs"
[[test]]
name = "reference_block"
path = "tests/reference_block.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bincode]
version = "2.0.1"
features = ["serde"]
[dependencies.camino]
version = "1.1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.eframe]
version = "0.33"
features = ["wgpu"]
optional = true
default-features = true
[dependencies.egui]
version = "0.33"
optional = true
[dependencies.html-escape]
version = "0.2"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.once_cell]
version = "1.20"
optional = true
[dependencies.quick-xml]
version = "0.38"
[dependencies.rayon]
version = "1.11"
[dependencies.roxmltree]
version = "0.20"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.syntect]
version = "4.6"
optional = true
[dependencies.walkdir]
version = "2.3"
[dependencies.zip]
version = "0.6"
features = ["deflate"]
default-features = false
[dev-dependencies.tempfile]
version = "3.10"