ferth 0.2.0

A safe, native-sized Forth. no_std compatible.
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 = "ferth"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A safe, native-sized Forth. no_std compatible."
homepage = "https://github.com/benwebber/ferth"
readme = "README.md"
keywords = [
    "forth",
    "language",
]
categories = [
    "compilers",
    "no-std",
]
license = "MIT"
repository = "https://github.com/benwebber/ferth"

[features]
repl = [
    "std",
    "time",
    "dep:rustyline",
]
std = []
time = [
    "std",
    "dep:chrono",
]
unsafe = []

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

[[bin]]
name = "ferth"
path = "src/main.rs"
required-features = ["std"]

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

[[bench]]
name = "forth"
path = "benches/forth.rs"
harness = false

[[bench]]
name = "lua"
path = "benches/lua.rs"
harness = false

[dependencies.chrono]
version = "0.4.45"
optional = true

[dependencies.rustyline]
version = "14"
optional = true

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.mlua]
version = "0.10"
features = [
    "lua54",
    "vendored",
]