[package]
edition = "2021"
rust-version = "1.85"
name = "planspec-core"
version = "0.1.0"
authors = ["Exponential Build, Inc."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types and validation for PlanSpec declarative work orchestration"
homepage = "https://planspec.io"
readme = "README.md"
keywords = [
"planspec",
"orchestration",
"workflow",
"dag",
]
categories = [
"data-structures",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/exponential-build/planspec"
[lib]
name = "planspec_core"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.jsonschema]
version = "0.18"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.serde_yaml]
version = "0.9"