aver-lang 0.2.2

Interpreter and transpiler for Aver, a statically-typed language designed for AI-assisted development
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 = "aver-lang"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Interpreter and transpiler for Aver, a statically-typed language designed for AI-assisted development"
readme = "README.md"
keywords = [
    "language",
    "interpreter",
    "transpiler",
    "programming-language",
]
categories = ["compilers"]
license = "MIT"
repository = "https://github.com/jasisz/aver"

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

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

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

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

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

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

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.colored]
version = "2"

[dependencies.thiserror]
version = "1"

[dependencies.ureq]
version = "2"