mirror of https://github.com/ekzhang/rustpad
24 lines
531 B
TOML
24 lines
531 B
TOML
[package]
|
|
name = "rustpad-wasm"
|
|
version = "0.1.0"
|
|
authors = ["Eric Zhang <ekzhang1@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = ["console_error_panic_hook"]
|
|
|
|
[dependencies]
|
|
bytecount = "0.6"
|
|
console_error_panic_hook = { version = "0.1", optional = true }
|
|
operational-transform = { version = "0.6.0", features = ["serde"] }
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
serde_json = "1.0.64"
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3.51"
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|