[package]
edition = "2024"
rust-version = "1.85"
name = "scientific-workflow"
version = "0.1.0"
authors = ["Dingyi Sun"]
build = false
include = [
"src/*.rs",
"src/**/*.rs",
"!src/main.rs",
"tests/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed, template-defined system states for scientific workflows"
documentation = "https://docs.rs/scientific-workflow"
readme = "README.md"
keywords = [
"science",
"simulation",
"workflow",
"tensor",
"state",
]
categories = [
"science",
"data-structures",
]
license = "MIT"
repository = "https://github.com/dingyisun0101/Scientific-Workflow"
[lib]
name = "scientific_workflow"
path = "src/lib.rs"
[[test]]
name = "system_state"
path = "tests/system_state.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.physics_in_parallel]
version = "3.0.3"