[package]
edition = "2024"
name = "abyss-core"
version = "0.5.0"
authors = ["liebe-magi <ripe.gold1058@fastmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core language primitives for the AbySS scripting language: AST, chumsky-based parser, static analysis, and formatter. Shared between the CLI interpreter and editor tooling."
homepage = "https://abyss-lang.dev"
readme = "README.md"
keywords = [
"abyss",
"parser",
"ast",
"language",
"interpreter",
]
categories = [
"parsing",
"development-tools",
]
license = "MIT"
repository = "https://github.com/liebe-magi/abyss-lang"
resolver = "2"
[lib]
name = "abyss_core"
path = "src/lib.rs"
[[test]]
name = "test_artifact_parser"
path = "tests/test_artifact_parser.rs"
[[test]]
name = "test_format"
path = "tests/test_format.rs"
[[test]]
name = "test_parser"
path = "tests/test_parser.rs"
[[test]]
name = "test_tokens"
path = "tests/test_tokens.rs"
[dependencies.ariadne]
version = "0.6"
[dependencies.chumsky]
version = "0.12"
[dependencies.ordered-float]
version = "5"