22 lines
555 B
TOML
22 lines
555 B
TOML
[package]
|
|
name = "rhai-codemirror"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
rhai = { workspace = true, features = ["internals"] }
|
|
|
|
wasm-bindgen = { workspace = true }
|
|
js-sys = { workspace = true }
|
|
web-sys = { workspace = true, features = ["console"] }
|
|
console_error_panic_hook = { workspace = true }
|
|
wee_alloc = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde-wasm-bindgen = { workspace = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rhai = { workspace = true, features = ["wasm-bindgen"] }
|