finx 0.1.0

A fast, lightweight embeddable scripting language
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 = "finx"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, lightweight embeddable scripting language"
readme = "README.md"
keywords = [
    "scripting",
    "language",
    "embedded",
    "fast",
    "lightweight",
]
license = "MIT"
repository = "https://github.com/programordie2/finx"

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

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

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

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

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

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

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

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

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

[dependencies.logos]
version = "0.15.0"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1