mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 10:08:20 +00:00
25 lines
511 B
TOML
25 lines
511 B
TOML
[package]
|
|
name = "limbo-wasm"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
console_error_panic_hook = "0.1.7"
|
|
js-sys = "0.3.72"
|
|
limbo_core = { path = "../../core", default-features = false }
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-futures = "0.4"
|
|
web-sys = "0.3"
|
|
getrandom = { version = "0.2.15", features = ["js"] }
|
|
|
|
[features]
|
|
web = []
|
|
nodejs = []
|
|
default = ["nodejs"]
|