mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 05:24:51 +00:00
a40b5c6e4a
- Support mark text with custom value [LORO-299] Allow users to mark text with custom value #139 - Expose richtext in wasm
21 lines
543 B
TOML
21 lines
543 B
TOML
[package]
|
|
name = "loro-common"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
serde = {version="1", features=["derive"]}
|
|
thiserror = "1.0.43"
|
|
rle = {path = "../rle"}
|
|
wasm-bindgen = {version= "=0.2.86", optional=true}
|
|
fxhash = "0.2.1"
|
|
enum-as-inner = "0.6.0"
|
|
string_cache = "0.8.7"
|
|
arbitrary = {version = "1.3.0", features=["derive"]}
|
|
js-sys = {version="0.3.60", optional=true}
|
|
zerovec = "0.9.4"
|
|
|
|
[features]
|
|
wasm = ["wasm-bindgen", "js-sys"]
|