21 lines
358 B
TOML
21 lines
358 B
TOML
[package]
|
|
name = "tlusty-rust"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Rust implementation of TLUSTY/SYNSPEC stellar atmosphere modeling"
|
|
|
|
[[bin]]
|
|
name = "tlusty"
|
|
path = "src/bin/tlusty.rs"
|
|
|
|
[dependencies]
|
|
ndarray = "0.15"
|
|
num-traits = "0.2"
|
|
num-complex = "0.4"
|
|
anyhow = "1.0"
|
|
thiserror = "2.0"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
criterion = "0.5"
|