2016-02-29 22:43:45 +01:00
|
|
|
[package]
|
|
|
|
name = "rhai"
|
2020-03-18 05:13:44 +01:00
|
|
|
version = "0.11.0"
|
2019-09-18 12:21:07 +02:00
|
|
|
edition = "2018"
|
2020-03-02 08:20:29 +01:00
|
|
|
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung"]
|
2016-03-16 15:00:57 +01:00
|
|
|
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"
|
2016-03-16 23:07:08 +01:00
|
|
|
]
|
2020-03-16 16:51:32 +01:00
|
|
|
keywords = [ "scripting" ]
|
2018-02-09 22:27:41 +01:00
|
|
|
|
2020-03-08 15:47:13 +01:00
|
|
|
[dependencies]
|
2020-03-17 19:26:11 +01:00
|
|
|
num-traits = "0.2.11"
|
|
|
|
|
2020-03-18 03:50:51 +01:00
|
|
|
[features]
|
|
|
|
#default = ["no_function", "no_index", "no_float", "only_i32", "no_stdlib", "unchecked", "no_optimize"]
|
2020-03-18 06:09:38 +01:00
|
|
|
default = []
|
2020-03-18 03:50:51 +01:00
|
|
|
unchecked = [] # unchecked arithmetic
|
2020-03-11 06:28:12 +01:00
|
|
|
no_stdlib = [] # no standard library of utility functions
|
2020-03-18 03:50:51 +01:00
|
|
|
no_index = [] # no arrays and indexing
|
|
|
|
no_float = [] # no floating-point
|
|
|
|
no_function = [] # no script-defined functions
|
|
|
|
no_optimize = [] # no script optimizer
|
2020-03-18 15:03:50 +01:00
|
|
|
optimize_full = [] # set optimization level to Full (default is Simple) - this is a feature used only to simplify testing
|
2020-03-18 03:50:51 +01:00
|
|
|
only_i32 = [] # set INT=i32 (useful for 32-bit systems)
|
|
|
|
only_i64 = [] # set INT=i64 (default) and disable support for all other integer types
|
|
|
|
|
2020-03-18 05:04:26 +01:00
|
|
|
# compiling for no-std
|
|
|
|
no_std = [ "num-traits/libm", "hashbrown", "core-error", "libm" ]
|
2020-03-18 03:50:51 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
2020-03-18 06:09:38 +01:00
|
|
|
#opt-level = "z" # optimize for size
|
|
|
|
#panic = 'abort' # remove stack backtrace for no-std
|
2020-03-18 03:50:51 +01:00
|
|
|
|
2020-03-17 19:26:11 +01:00
|
|
|
[dependencies.libm]
|
|
|
|
version = "0.2.1"
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.core-error]
|
|
|
|
version = "0.0.1-rc4"
|
|
|
|
features = ["alloc"]
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.hashbrown]
|
|
|
|
version = "0.7.1"
|
|
|
|
default-features = false
|
|
|
|
features = ["ahash", "nightly", "inline-more"]
|
|
|
|
optional = true
|
|
|
|
|
|
|
|
[dependencies.ahash]
|
|
|
|
version = "0.3.2"
|
|
|
|
default-features = false
|
|
|
|
optional = true
|