bop-lang 0.3.0

A small, embeddable, dynamically-typed programming language with zero dependencies
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"
rust-version = "1.85"
name = "bop-lang"
version = "0.3.0"
authors = ["Steve Pryde"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small, embeddable, dynamically-typed programming language with zero dependencies"
homepage = "https://github.com/stevepryde/bop-lang"
readme = "README.md"
keywords = [
    "language",
    "interpreter",
    "scripting",
    "embedded",
]
categories = ["compilers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/stevepryde/bop-lang"
resolver = "2"

[features]
bop-std = []
default = ["bop-std"]
no_std = ["dep:libm"]

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

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

[dependencies.libm]
version = "0.2"
optional = true
default-features = false