[package]
edition = "2024"
rust-version = "1.97"
name = "scientific-workflow"
version = "0.8.1"
authors = ["Dingyi Sun"]
build = false
include = [
"src/*.rs",
"src/**/*.rs",
"tests/**",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Configuration-driven scientific tasks, typed state, and durable recordings"
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 = "analysis_workflow"
path = "tests/analysis_workflow.rs"
[[test]]
name = "artifact_workflow"
path = "tests/artifact_workflow.rs"
[[test]]
name = "configuration_workflow"
path = "tests/configuration_workflow.rs"
[[test]]
name = "python_reader_conformance"
path = "tests/python_reader_conformance.rs"
[[test]]
name = "replicate_workflow"
path = "tests/replicate_workflow.rs"
[[test]]
name = "resume_workflow"
path = "tests/resume_workflow.rs"
[[test]]
name = "rng_record_workflow"
path = "tests/rng_record_workflow.rs"
[[test]]
name = "state_workflow"
path = "tests/state_workflow.rs"
[[test]]
name = "storage_resilience"
path = "tests/storage_resilience.rs"
[[test]]
name = "storage_workflow"
path = "tests/storage_workflow.rs"
[[test]]
name = "study_workflow"
path = "tests/study_workflow.rs"
[dependencies.crossterm]
version = "0.29"
[dependencies.erased-serde]
version = "0.4.10"
[dependencies.fs2]
version = "0.4"
[dependencies.ratatui]
version = "0.30.0"
features = ["crossterm_0_29"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = [
"float_roundtrip",
"preserve_order",
"raw_value",
]
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3.55"
features = [
"formatting",
"parsing",
]
[dev-dependencies.physics_in_parallel]
version = "3.6.0"