30 lines
578 B
TOML
30 lines
578 B
TOML
[package]
|
|
name = "rtx-fem-export"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Finite element model export formats - LS-DYNA, Abaqus, VTK"
|
|
|
|
[dependencies]
|
|
# Essential dependencies
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
# Math
|
|
nalgebra = { workspace = true }
|
|
|
|
# Material models
|
|
rtx-materials = { path = "../rtx-materials" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[lints]
|
|
workspace = true
|