[package]
edition = "2021"
name = "tatara-lisp-script"
version = "0.2.1"
authors = ["Pleme.io <engineering@pleme.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "tatara-script — standalone interpreter that makes tatara-lisp a full scripting language for nix-run apps. Wraps tatara-lisp-eval with a scripting-oriented stdlib (http, json, yaml, sops, file I/O, env, sha256, string ops) so a .tlisp file can replace a bash script one-for-one."
homepage = "https://github.com/pleme-io/tatara-lisp"
readme = false
license = "MIT"
repository = "https://github.com/pleme-io/tatara-lisp"
[lib]
name = "tatara_lisp_script"
path = "src/lib.rs"
[[bin]]
name = "tatara-script"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.tatara-lisp]
version = "0.2.1"
[dependencies.tatara-lisp-eval]
version = "0.2.1"
[dependencies.tatara-lisp-source]
version = "0.2.1"
[dependencies.thiserror]
version = "2"
[dependencies.tiny_http]
version = "0.12"
[dependencies.toml]
version = "0.9"
[dependencies.ureq]
version = "3"
features = ["json"]
[dependencies.which]
version = "8"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1