rhai/Cargo.toml

89 lines
2.6 KiB
TOML
Raw Normal View History

2016-02-29 22:43:45 +01:00
[package]
name = "rhai"
2020-07-14 02:42:02 +02:00
version = "0.18.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"]
description = "Embedded scripting for Rust"
homepage = "https://github.com/jonathandturner/rhai"
repository = "https://github.com/jonathandturner/rhai"
readme = "README.md"
2020-03-22 03:18:16 +01:00
license = "MIT OR Apache-2.0"
include = [
"**/*.rs",
"scripts/*.rhai",
"Cargo.toml"
]
2020-03-16 16:51:32 +01:00
keywords = [ "scripting" ]
categories = [ "no-std", "embedded", "wasm", "parser-implementations" ]
[dependencies]
2020-04-12 15:24:30 +02:00
num-traits = { version = "0.2.11", default-features = false }
2020-07-29 10:10:06 +02:00
smallvec = { version = "1.4.1", default-features = false }
2020-03-17 19:26:11 +01:00
2020-03-18 03:50:51 +01:00
[features]
2020-05-23 18:29:06 +02:00
#default = ["unchecked", "sync", "no_optimize", "no_float", "only_i32", "no_index", "no_object", "no_function", "no_module"]
2020-07-31 10:39:38 +02:00
default = []
2020-08-04 10:27:55 +02:00
plugins = [] # custom plugins support
2020-03-18 03:50:51 +01:00
unchecked = [] # unchecked arithmetic
2020-05-23 18:29:06 +02:00
sync = [] # restrict to only types that implement Send + Sync
2020-03-18 03:50:51 +01:00
no_optimize = [] # no script optimizer
2020-05-23 18:29:06 +02:00
no_float = [] # no floating-point
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-05-23 18:29:06 +02:00
no_index = [] # no arrays and indexing
no_object = [] # no custom objects
no_function = [] # no script-defined functions
2020-08-03 06:10:20 +02:00
no_closure = [] # no automatic sharing and capture of anonymous functions to external variables
2020-05-23 18:29:06 +02:00
no_module = [] # no modules
2020-06-23 04:43:24 +02:00
internals = [] # expose internal data structures
unicode-xid-ident = ["unicode-xid"] # allow Unicode Standard Annex #31 for identifiers.
2020-03-18 03:50:51 +01:00
# compiling for no-std
2020-08-03 06:10:20 +02:00
no_std = [ "no_closure", "num-traits/libm", "hashbrown", "core-error", "libm", "ahash" ]
2020-03-18 03:50:51 +01:00
[profile.release]
lto = "fat"
codegen-units = 1
#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]
2020-04-12 15:24:30 +02:00
version = "0.2.1"
2020-07-20 14:23:35 +02:00
default_features = false
2020-03-17 19:26:11 +01:00
optional = true
[dependencies.core-error]
2020-04-12 15:24:30 +02:00
version = "0.0.0"
default_features = false
2020-03-17 19:26:11 +01:00
features = ["alloc"]
optional = true
[dependencies.hashbrown]
2020-04-12 15:24:30 +02:00
version = "0.7.1"
2020-03-17 19:26:11 +01:00
default-features = false
features = ["ahash", "nightly", "inline-more"]
optional = true
[dependencies.ahash]
2020-04-12 15:24:30 +02:00
version = "0.3.2"
2020-03-17 19:26:11 +01:00
default-features = false
2020-04-24 06:39:24 +02:00
features = ["compile-time-rng"]
2020-03-17 19:26:11 +01:00
optional = true
2020-06-17 10:50:57 +02:00
2020-07-03 11:19:55 +02:00
[dependencies.serde]
version = "1.0.111"
default_features = false
features = ["derive", "alloc"]
2020-07-03 11:19:55 +02:00
optional = true
2020-07-29 01:25:37 +02:00
[dependencies.unicode-xid]
version = "0.2.1"
default_features = false
optional = true
2020-06-17 10:50:57 +02:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
instant= { version = "0.1.4", features = ["wasm-bindgen"] } # WASM implementation of std::time::Instant
[package.metadata.docs.rs]
features = [ "serde", "internals" ]