2020-07-21 16:32:24 +02:00
|
|
|
[package]
|
2020-07-21 17:08:46 +02:00
|
|
|
name = "no_std_test"
|
2020-07-21 16:32:24 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
authors = ["Stephen Chung"]
|
2020-07-21 17:08:46 +02:00
|
|
|
description = "no-std test application"
|
|
|
|
homepage = "https://github.com/jonathandturner/rhai/tree/master/no_std/no_std_test"
|
2020-07-21 16:32:24 +02:00
|
|
|
repository = "https://github.com/jonathandturner/rhai"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-07-22 05:43:58 +02:00
|
|
|
rhai = { path = "../../", features = [ "no_std", "unchecked", "only_i32", "no_module" ], default_features = false }
|
2020-07-21 16:32:24 +02:00
|
|
|
wee_alloc = { version = "0.4.5", default_features = false }
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
panic = "abort"
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = "z" # optimize for size
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = "fat"
|
|
|
|
debug-assertions = false
|
|
|
|
codegen-units = 1
|
|
|
|
panic = "abort"
|