36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[package]
|
|
name = "rhai"
|
|
version = "0.10.2"
|
|
edition = "2018"
|
|
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung"]
|
|
description = "Embedded scripting for Rust"
|
|
homepage = "https://github.com/jonathandturner/rhai"
|
|
repository = "https://github.com/jonathandturner/rhai"
|
|
readme = "README.md"
|
|
license = "MIT/Apache-2.0"
|
|
include = [
|
|
"**/*.rs",
|
|
"scripts/*.rhai",
|
|
"Cargo.toml"
|
|
]
|
|
|
|
[dependencies]
|
|
num-traits = "*"
|
|
|
|
[features]
|
|
#default = ["no_function", "no_index", "no_float", "only_i32", "no_stdlib", "unchecked"]
|
|
default = []
|
|
debug_msgs = [] # print debug messages on function registrations and calls
|
|
unchecked = [] # unchecked arithmetic
|
|
no_stdlib = [] # no standard library of utility functions
|
|
no_index = [] # no arrays and indexing
|
|
no_float = [] # no floating-point
|
|
no_function = [] # no script-defined functions
|
|
only_i32 = [] # set INT=i32 (useful for 32-bit systems)
|
|
only_i64 = [] # set INT=i64 (default) and disable support for all other integer types
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
#opt-level = "z" # optimize for size
|