blots 0.13.1

A small, simple, expression-oriented programming language.
[[bin]]
name = "blots"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0.86"

[dependencies.blots-core]
version = "0.13.1"

[dependencies.clap]
features = ["derive"]
version = "4.5.21"

[dependencies.clap_complete]
version = "4.5"

[dependencies.indexmap]
features = ["serde"]
version = "2.2"

[dependencies.regex]
version = "1.10"

[dependencies.rustyline]
version = "17.0.1"

[dependencies.serde_json]
version = "1.0"

[dependencies.yansi]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.8"

[package]
authors = ["Paul Russo <paul@paulrusso.me>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A small, simple, expression-oriented programming language."
edition = "2024"
homepage = "https://github.com/paul-russo/blots-lang"
license = "MIT"
name = "blots"
readme = "README.md"
repository = "https://github.com/paul-russo/blots-lang"
resolver = "2"
rust-version = "1.89"
version = "0.13.1"

[[test]]
name = "cli_flags"
path = "tests/cli_flags.rs"

[[test]]
name = "test_function_input_deserialization"
path = "tests/test_function_input_deserialization.rs"

[[test]]
name = "test_function_output_closures"
path = "tests/test_function_output_closures.rs"

[[test]]
name = "test_lambda_parameter_isolation"
path = "tests/test_lambda_parameter_isolation.rs"

[[test]]
name = "test_output_validation"
path = "tests/test_output_validation.rs"