cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "cemc"
version = "0.1.2"
authors = ["Ed Sweeney <ed@onextent.com>"]
build = false
exclude = [
    "target/",
    "runtime/*.o",
    "runtime/*.a",
    "tests/test_*",
    "*_exe",
    "*.ll",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cem language compiler - A concatenative language with green threads and linear types"
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",
]
license = "MIT"
repository = "https://github.com/navicore/cem"

[lib]
name = "cemc"
path = "src/lib.rs"

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

[[example]]
name = "compile_echo"
path = "examples/compile_echo.rs"

[[example]]
name = "compile_hello_io"
path = "examples/compile_hello_io.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "cargo",
]

[dependencies.clap_complete]
version = "4.5"