[package]
edition = "2021"
name = "lex-store"
version = "0.6.0"
authors = ["Alpibrupa <https://github.com/alpibrupa>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Content-addressed on-disk store for Lex stages, branches, and traces."
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_store"
path = "src/lib.rs"
[[test]]
name = "apply_operation"
path = "tests/apply_operation.rs"
[[test]]
name = "apply_operation_checked"
path = "tests/apply_operation_checked.rs"
[[test]]
name = "branch_perf"
path = "tests/branch_perf.rs"
[[test]]
name = "branches"
path = "tests/branches.rs"
[[test]]
name = "concurrent_apply"
path = "tests/concurrent_apply.rs"
[[test]]
name = "delta_conformance"
path = "tests/delta_conformance.rs"
[[test]]
name = "extract_function"
path = "tests/extract_function.rs"
[[test]]
name = "gc_conformance"
path = "tests/gc_conformance.rs"
[[test]]
name = "inline_let"
path = "tests/inline_let.rs"
[[test]]
name = "m6"
path = "tests/m6.rs"
[[test]]
name = "producer_block_gate"
path = "tests/producer_block_gate.rs"
[[test]]
name = "publish_program_gate"
path = "tests/publish_program_gate.rs"
[[test]]
name = "rename_local"
path = "tests/rename_local.rs"
[[test]]
name = "repair_hint"
path = "tests/repair_hint.rs"
[[test]]
name = "replace_match_arm"
path = "tests/replace_match_arm.rs"
[[test]]
name = "required_attestations_gate"
path = "tests/required_attestations_gate.rs"
[[test]]
name = "run_op_trace"
path = "tests/run_op_trace.rs"
[[test]]
name = "walk_back_gate"
path = "tests/walk_back_gate.rs"
[dependencies.fs2]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.lex-ast]
version = "0.6.0"
[dependencies.lex-trace]
version = "0.6.0"
[dependencies.lex-types]
version = "0.6.0"
[dependencies.lex-vcs]
version = "0.6.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dev-dependencies.lex-syntax]
version = "0.6.0"
[dev-dependencies.tempfile]
version = "3"