[package]
edition = "2021"
name = "lex-store"
version = "0.4.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 = "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 = "required_attestations_gate"
path = "tests/required_attestations_gate.rs"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.lex-ast]
version = "0.4.0"
[dependencies.lex-trace]
version = "0.4.0"
[dependencies.lex-types]
version = "0.4.0"
[dependencies.lex-vcs]
version = "0.4.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.4.0"
[dev-dependencies.tempfile]
version = "3"