[package]
edition = "2021"
name = "lex-bytecode"
version = "0.9.5"
authors = ["Alpibrupa <https://github.com/alpibrupa>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Bytecode compiler + VM for Lex."
homepage = "https://github.com/alpibrusl/lex-lang"
readme = false
keywords = [
"lex",
"agent",
"effects",
"language",
]
categories = [
"compilers",
"development-tools",
]
license = "EUPL-1.2"
repository = "https://github.com/alpibrusl/lex-lang"
[lib]
name = "lex_bytecode"
path = "src/lib.rs"
[[test]]
name = "closure_canonicality"
path = "tests/closure_canonicality.rs"
[[test]]
name = "closures_in_records"
path = "tests/closures_in_records.rs"
[[test]]
name = "from_json"
path = "tests/from_json.rs"
[[test]]
name = "issue_337_pattern_stack"
path = "tests/issue_337_pattern_stack.rs"
[[test]]
name = "issue_339_lambda_capture"
path = "tests/issue_339_lambda_capture.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[bench]]
name = "dispatch"
path = "benches/dispatch.rs"
harness = false
[dependencies.arrow-array]
version = "55"
[dependencies.arrow-schema]
version = "55"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.lex-ast]
version = "0.9.5"
[dependencies.lex-types]
version = "0.9.5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.smol_str]
version = "0.3"
features = ["serde"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.lex-syntax]
version = "0.9.5"