rhai/Cargo.toml

114 lines
4.8 KiB
TOML
Raw Normal View History

2020-09-08 23:03:38 +02:00
[workspace]
2021-03-12 06:26:47 +01:00
members = [".", "codegen"]
2020-09-08 23:03:38 +02:00
2016-02-29 22:43:45 +01:00
[package]
name = "rhai"
2022-10-27 14:42:10 +02:00
version = "1.11.0"
2022-08-27 11:28:59 +02:00
rust-version = "1.61.0"
2019-09-18 12:21:07 +02:00
edition = "2018"
2022-07-21 02:35:56 +02:00
resolver = "2"
authors = ["Jonathan Turner", "Lukáš Hozda", "Stephen Chung", "jhwgh1968"]
description = "Embedded scripting for Rust"
2021-02-27 05:52:20 +01:00
homepage = "https://rhai.rs"
2021-01-14 12:07:03 +01:00
repository = "https://github.com/rhaiscript"
readme = "README.md"
2020-03-22 03:18:16 +01:00
license = "MIT OR Apache-2.0"
include = ["/src/**/*", "/Cargo.toml", "/README.md", "LICENSE*"]
2021-03-12 06:26:47 +01:00
keywords = ["scripting", "scripting-engine", "scripting-language", "embedded"]
categories = ["no-std", "embedded", "wasm", "parser-implementations"]
[dependencies]
2022-08-24 17:17:12 +02:00
smallvec = { version = "1.7", default-features = false, features = ["union", "const_new", "const_generics"] }
2022-11-05 04:35:01 +01:00
# 0.8.1 pulls in `getrandom/js` which breaks no-std
ahash = { version = "=0.8.0", default-features = false, features = ["compile-time-rng"] }
num-traits = { version = "0.2", default-features = false }
2022-02-25 04:42:59 +01:00
bitflags = { version = "1", default-features = false }
2022-02-25 01:24:22 +01:00
smartstring = { version = "1", default-features = false }
2022-06-05 12:17:44 +02:00
rhai_codegen = { version = "1.4.1", path = "codegen", default-features = false }
2022-01-30 02:41:51 +01:00
no-std-compat = { version = "0.4", default-features = false, features = ["alloc"], optional = true }
libm = { version = "0.2", default-features = false, optional = true }
2022-09-05 12:22:30 +02:00
hashbrown = { version = "0.12", optional = true }
2022-01-30 02:41:51 +01:00
core-error = { version = "0.0", default-features = false, features = ["alloc"], optional = true }
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"], optional = true }
serde_json = { version = "1.0", default-features = false, features = ["alloc"], optional = true }
unicode-xid = { version = "0.2", default-features = false, optional = true }
rust_decimal = { version = "1.16", default-features = false, features = ["maths"], optional = true }
getrandom = { version = "0.2", optional = true }
2022-07-17 12:49:12 +02:00
rustyline = { version = "10", optional = true }
2020-03-17 19:26:11 +01:00
[dev-dependencies]
serde_bytes = "0.11"
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
2020-03-18 03:50:51 +01:00
[features]
2022-10-12 02:13:27 +02:00
default = ["std", "ahash/runtime-rng"] # ahash/runtime-rng trumps ahash/compile-time-rng
std = ["ahash/std", "num-traits/std", "smartstring/std"]
2021-03-21 16:51:24 +01:00
unchecked = [] # unchecked arithmetic
sync = [] # restrict to only types that implement Send + Sync
2021-04-22 17:02:25 +02:00
no_position = [] # do not track position in the parser
2021-03-21 16:51:24 +01:00
no_optimize = [] # no script optimizer
no_float = [] # no floating-point
f32_float = [] # set FLOAT=f32
only_i32 = [] # set INT=i32 (useful for 32-bit systems)
only_i64 = [] # set INT=i64 (default) and disable support for all other integer types
2021-07-08 08:09:31 +02:00
decimal = ["rust_decimal"] # add the Decimal number type
2021-03-21 16:51:24 +01:00
no_index = [] # no arrays and indexing
no_object = [] # no custom objects
2022-10-15 09:11:51 +02:00
no_time = [] # no timestamps
2021-03-21 16:51:24 +01:00
no_function = ["no_closure"] # no script-defined functions (meaning no closures)
no_closure = [] # no automatic sharing and capture of anonymous functions to external variables
no_module = [] # no modules
2022-07-05 16:59:03 +02:00
no_custom_syntax = [] # no custom syntax or custom operators
2021-03-12 06:26:47 +01:00
unicode-xid-ident = ["unicode-xid"] # allow Unicode Standard Annex #31 for identifiers.
metadata = ["serde", "serde_json", "rhai_codegen/metadata", "smartstring/serde"] # enable exporting functions metadata
2022-02-08 02:02:15 +01:00
internals = [] # expose internal data structures
2022-01-24 10:04:40 +01:00
debugging = ["internals"] # enable debugging
2022-08-14 08:20:37 +02:00
serde = ["dep:serde", "smartstring/serde", "smallvec/serde"] # implement serde for rhai types
2020-03-18 03:50:51 +01:00
# compiling for no-std
2022-10-15 09:11:51 +02:00
no_std = ["no-std-compat", "num-traits/libm", "core-error", "libm", "hashbrown", "no_time"]
2020-03-18 03:50:51 +01:00
2021-01-18 04:35:55 +01:00
# compiling for WASM
wasm-bindgen = ["getrandom/js", "instant/wasm-bindgen"]
stdweb = ["getrandom/js", "instant/stdweb"]
2021-01-18 04:35:55 +01:00
# compiling bin tools
bin-features = ["decimal", "metadata", "serde", "debugging", "rustyline"]
2022-01-30 02:41:51 +01:00
[[bin]]
name = "rhai-repl"
required-features = ["rustyline"]
[[bin]]
name = "rhai-run"
[[bin]]
name = "rhai-dbg"
required-features = ["debugging"]
[[example]]
name = "serde"
required-features = ["serde"]
2022-07-25 19:01:06 +02:00
[[example]]
name = "definitions"
required-features = ["metadata", "internals"]
2022-07-25 19:01:06 +02:00
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
2022-01-12 01:12:28 +01:00
[target.'cfg(target_family = "wasm")'.dependencies]
instant = { version = "0.1.10" } # WASM implementation of std::time::Instant
2021-02-19 08:50:48 +01:00
[package.metadata.docs.rs]
2022-01-24 10:04:40 +01:00
features = ["metadata", "serde", "internals", "decimal", "debugging"]
[patch.crates-io]
# Notice that a custom modified version of `rustyline` is used which supports bracketed paste on Windows.
# This can be moved to the official version when bracketed paste is added.
2022-07-17 12:49:12 +02:00
rustyline = { git = "https://github.com/schungx/rustyline", branch = "v10" }