shik 0.1.3

A functional scripting language for shell automation
Documentation
[[bin]]
name = "shik"
path = "src/main.rs"

[dependencies.glob]
version = "0.3.3"

[dependencies.thiserror]
version = "2.0.17"

[lib]
name = "shik"
path = "src/lib.rs"

[package]
authors = ["pungy"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A functional scripting language for shell automation"
edition = "2021"
homepage = "https://github.com/pungy/shik"
keywords = ["shell", "scripting", "functional", "automation", "language"]
license = "MIT"
name = "shik"
readme = "README.md"
repository = "https://github.com/pungy/shik"
version = "0.1.3"

[package.metadata.deb]
assets = [["target/release/shik", "usr/bin/", "755"], ["README.md", "usr/share/doc/shik/README", "644"], ["LICENSE", "usr/share/doc/shik/LICENSE", "644"]]
copyright = "2024, Shik Contributors"
extended-description = """
Shik is a functional, dynamically-typed scripting language designed for
shell automation. It features a minimalist syntax inspired by Haskell and
Lisp, with pipeline operators for function composition, first-class
functions, and a rich standard library for system operations."""
maintainer = "Shik Contributors"
priority = "optional"
section = "utils"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/bin/shik"
mode = "755"
source = "target/release/shik"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/doc/shik/README.md"
mode = "644"
source = "README.md"

[[package.metadata.generate-rpm.assets]]
dest = "/usr/share/doc/shik/LICENSE"
mode = "644"
source = "LICENSE"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true

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

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

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

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

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

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

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