rhai 1.12.0

Embedded scripting for Rust
Documentation
[[bin]]
name = "rhai-repl"
required-features = ["rustyline"]

[[bin]]
name = "rhai-run"

[[bin]]
name = "rhai-dbg"
required-features = ["debugging"]
[dependencies.ahash]
default-features = false
features = ["compile-time-rng"]
version = "0.8.2"

[dependencies.bitflags]
default-features = false
version = "1"

[dependencies.core-error]
default-features = false
features = ["alloc"]
optional = true
version = "0.0"

[dependencies.document-features]
optional = true
version = "0.2"

[dependencies.getrandom]
optional = true
version = "0.2"

[dependencies.hashbrown]
optional = true
version = "0.13"

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

[dependencies.no-std-compat]
default-features = false
features = ["alloc"]
optional = true
version = "0.4"

[dependencies.num-traits]
default-features = false
version = "0.2"

[dependencies.rhai_codegen]
default-features = false
version = "1.5.0"

[dependencies.rust_decimal]
default-features = false
features = ["maths"]
optional = true
version = "1.16"

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

[dependencies.serde]
default-features = false
features = ["derive", "alloc"]
optional = true
version = "1.0"

[dependencies.serde_json]
default-features = false
features = ["alloc"]
optional = true
version = "1.0"

[dependencies.smallvec]
default-features = false
features = ["union", "const_new", "const_generics"]
version = "1.7"

[dependencies.smartstring]
default-features = false
version = "1"

[dependencies.unicode-xid]
default-features = false
optional = true
version = "0.2"
[dev-dependencies.rmp-serde]
version = "1.1"

[dev-dependencies.serde_json]
default-features = false
features = ["alloc"]
version = "1.0"

[features]
bin-features = ["decimal", "metadata", "serde", "debugging", "rustyline"]
debugging = ["internals"]
decimal = ["rust_decimal"]
default = ["std", "ahash/runtime-rng"]
f32_float = []
internals = []
metadata = ["serde", "serde_json", "rhai_codegen/metadata", "smartstring/serde"]
no_closure = []
no_custom_syntax = []
no_float = []
no_function = ["no_closure"]
no_index = []
no_module = []
no_object = []
no_optimize = []
no_position = []
no_std = ["no-std-compat", "num-traits/libm", "core-error", "libm", "hashbrown", "no_time"]
no_time = []
only_i32 = []
only_i64 = []
serde = ["dep:serde", "smartstring/serde", "smallvec/serde"]
std = ["ahash/std", "num-traits/std", "smartstring/std"]
stdweb = ["getrandom/js", "instant/stdweb"]
sync = []
unchecked = []
unicode-xid-ident = ["unicode-xid"]
wasm-bindgen = ["getrandom/js", "instant/wasm-bindgen"]

[package]
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"]
categories = ["no-std", "embedded", "wasm", "parser-implementations"]
description = "Embedded scripting for Rust"
edition = "2018"
homepage = "https://rhai.rs"
include = ["/src/**/*", "/Cargo.toml", "/README.md", "LICENSE*"]
keywords = ["scripting", "scripting-engine", "scripting-language", "embedded"]
license = "MIT OR Apache-2.0"
name = "rhai"
readme = "README.md"
repository = "https://github.com/rhaiscript"
resolver = "2"
rust-version = "1.61.0"
version = "1.12.0"
[package.metadata.docs.rs]
features = ["document-features", "metadata", "serde", "internals", "decimal", "debugging"]
[profile.release]
codegen-units = 1
lto = "fat"
[target."cfg(target_family = \"wasm\")".dependencies.instant]
version = "0.1.10"