[package] name = "rtx-mri2fe" version = "1.0.0" edition = "2024" description = "Complete MRI-to-Finite Element pipeline with builder API" license = "MIT" repository = "https://github.com/anthropics/rustytorch" keywords = ["mri", "finite-element", "mesh", "medical-imaging", "biomechanics"] categories = ["science", "simulation"] [dependencies] # Internal crates rtx-medical-io = { path = "../rtx-medical-io" } rtx-materials = { path = "../rtx-materials" } rtx-fem-export = { path = "../rtx-fem-export" } rtx-mesh-gen = { path = "../rtx-mesh-gen" } rtx-registration = { path = "../rtx-registration" } rtx-segmentation = { path = "../rtx-segmentation" } # External dependencies nalgebra = { workspace = true } rayon = "1.10" thiserror = "2.0" serde = { version = "1.0", features = ["derive"] } [dev-dependencies] tempfile = "3.0" [lints] workspace = true