[package]
edition = "2021"
name = "lex-bytecode"
version = "0.2.1"
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 = "closures_in_records"
path = "tests/closures_in_records.rs"
[[test]]
name = "from_json"
path = "tests/from_json.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.lex-ast]
version = "0.2.1"
[dependencies.lex-types]
version = "0.2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.lex-syntax]
version = "0.2.1"