[package]
edition = "2021"
name = "lumen-compiler"
version = "0.1.1"
authors = ["Lumen Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The AI-Native Programming Language"
homepage = "https://alliecatowo.github.io/lumen/"
readme = false
license = "MIT"
repository = "https://github.com/alliecatowo/lumen"
[lib]
name = "lumen_compiler"
path = "src/lib.rs"
[[test]]
name = "compiler_fixes_suite"
path = "tests/compiler_fixes_suite.rs"
[[test]]
name = "core_semantics_tests"
path = "tests/core_semantics_tests.rs"
[[test]]
name = "examples_compile"
path = "tests/examples_compile.rs"
[[test]]
name = "exhaustiveness_suite"
path = "tests/exhaustiveness_suite.rs"
[[test]]
name = "expr_features_suite"
path = "tests/expr_features_suite.rs"
[[test]]
name = "generics_suite"
path = "tests/generics_suite.rs"
[[test]]
name = "import_tests"
path = "tests/import_tests.rs"
[[test]]
name = "loops_ops_suite"
path = "tests/loops_ops_suite.rs"
[[test]]
name = "markdown_native_suite"
path = "tests/markdown_native_suite.rs"
[[test]]
name = "parser_bugs_suite"
path = "tests/parser_bugs_suite.rs"
[[test]]
name = "pattern_matching_suite"
path = "tests/pattern_matching_suite.rs"
[[test]]
name = "raw_format_test"
path = "tests/raw_format_test.rs"
[[test]]
name = "round17_suite"
path = "tests/round17_suite.rs"
[[test]]
name = "round18_suite"
path = "tests/round18_suite.rs"
[[test]]
name = "spec_markdown_sweep"
path = "tests/spec_markdown_sweep.rs"
[[test]]
name = "spec_suite"
path = "tests/spec_suite.rs"
[[test]]
name = "testing_stdlib_integration"
path = "tests/testing_stdlib_integration.rs"
[[test]]
name = "type_sugar_suite"
path = "tests/type_sugar_suite.rs"
[[test]]
name = "typecheck_tests"
path = "tests/typecheck_tests.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"