Skip to content
Snippets Groups Projects
Cargo.toml 1.04 KiB
Newer Older
[package]
name = "opossum"
version = "0.1.0"
edition = "2021"
authors = ["Udo Eisenbarth <u.eisenbarth@gsi.de>", "Yannik Zobus <y.zobus@gsi.de>"]
description = "Open-source optics simulation software and unified modeller"
repository = "https://git.gsi.de/phelix/rust/opossum/"
license = "GPL-2.0-or-later"
keywords = ["laser", "optics", "physics", "simulation"]
categories = [ "science", "simulation"]
publish = false

[dependencies]
petgraph = {version="0.6.3", features = ["serde-1"]} # the graph library
serde = { version="1" }
ndarray= { version="0", features= ["serde"]}

approx = "0" # assert macros for comparison of floats with tolerance
clap = { version = "4.4", features = ["derive"] } # command line argument parser
structopt = "0.3"
rprompt = "2.0"
y.zobus's avatar
y.zobus committed
strum = { version = "0.25", features = ["derive"] }

chrono = "0"

[build-dependencies]
# All features enabled
vergen = { version = "8.2", features = ["git", "gitcl"] }