[package]
name = "archscript"
version = "0.2.8"
edition = "2021"
description = "ArchScript programming language — Python-like syntax, Haskell-inspired features, Arch Linux integration"
license = "MPL-2.0"
repository = "https://github.com/Cleta-LLC/archscript"
homepage = "https://archscript.org"
readme = "README.md"
keywords = ["language", "interpreter", "archlinux", "scripting", "functional"]
categories = ["command-line-utilities", "development-tools", "compilers"]
authors = ["Cleta LLC"]
rust-version = "1.70"
[[bin]]
name = "archscript"
path = "src/main.rs"
[lib]
name = "archscript"
path = "src/lib.rs"
[dependencies]
pest = "2.7"
pest_derive = "2.7"
thiserror = "1"
clap = { version = "4", features = ["derive"] }
dotenvy = "0.15"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true