cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
[package]
name = "cemc"
version = "0.1.2"
edition = "2024"
authors = ["Ed Sweeney <ed@onextent.com>"]
description = "Cem language compiler - A concatenative language with green threads and linear types"
license = "MIT"
repository = "https://github.com/navicore/cem"
homepage = "https://github.com/navicore/cem"
documentation = "https://github.com/navicore/cem"
readme = "README.md"
keywords = ["compiler", "concatenative", "green-threads", "llvm", "linear-types"]
categories = ["compilers", "concurrency", "development-tools"]
exclude = [
    "target/",
    "runtime/*.o",
    "runtime/*.a",
    "tests/test_*",
    "*_exe",
    "*.ll",
]

[[bin]]
name = "cem"
path = "src/main.rs"

[dependencies]
clap = { version = "4.5", features = ["derive", "cargo"] }
clap_complete = "4.5"

# Note: We generate LLVM IR as text and call clang directly.
# This works with any LLVM version (10, 15, 18, 19, 21+)
# See docs/architecture/LLVM_TEXT_IR.md for rationale.