[package] name = "augurs-js" version.workspace = true authors.workspace = true documentation.workspace = true license.workspace = true edition.workspace = true keywords.workspace = true description = "JavaScript bindings for the augurs time series library." [lib] crate-type = ["cdylib", "rlib"] [features] default = ["console_error_panic_hook"] [dependencies] augurs-core = { workspace = true, features = ["serde"] } augurs-ets = { workspace = true, features = ["mstl", "serde"] } augurs-mstl = { workspace = true, features = ["serde"] } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires # all the `std::fmt` and `std::panicking` infrastructure, so isn't great for # code size when deploying. console_error_panic_hook = { version = "0.1.7", optional = true } getrandom = { version = "0.2.10", features = ["js"] } js-sys = "0.3.64" serde-wasm-bindgen = "0.6.0" tracing-wasm = "0.2.1" wasm-bindgen = "0.2.87"