rustscript-embedded 0.1.0

Embedded-facing RustScript runner examples with JIT disabled
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 = "rustscript-embedded"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded-facing RustScript runner examples with JIT disabled"
readme = "README.md"
license = "MIT"

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

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

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

[dependencies.vm]
version = "0.22.2"
features = ["runtime"]
default-features = false
package = "pd-vm"

[profile.min-size]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
inherits = "release"
strip = "symbols"

[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"