[package]
edition = "2024"
name = "sda"
version = "1.0.0"
authors = ["Alexander R. Croft"]
build = "build.rs"
include = [
"BUILD",
"Cargo.toml",
"README.md",
"build.rs",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured Data Algebra command-line interface for evaluating, checking, and formatting SDA programs over JSON input."
homepage = "https://github.com/example/axiom"
documentation = "https://docs.rs/sda"
readme = "README.md"
keywords = [
"sda",
"json",
"cli",
"transformation",
"validation",
]
categories = [
"command-line-utilities",
"parser-implementations",
"text-processing",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/example/axiom"
[[bin]]
name = "sda"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.sda-core]
version = "1.0.0"
package = "sda-lib"
[dependencies.serde_json]
version = "1"