2023-07-14 08:05:06 +00:00
|
|
|
[package]
|
|
|
|
name = "loro-common"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-11-12 15:23:12 +00:00
|
|
|
license = "MIT"
|
2023-11-28 13:25:58 +00:00
|
|
|
description = "Common types and functions for Loro. This is an internal lib of Loro."
|
2023-07-14 08:05:06 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-28 13:01:01 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-07-14 08:38:53 +00:00
|
|
|
thiserror = "1.0.43"
|
2023-11-28 13:25:58 +00:00
|
|
|
rle = { path = "../rle", version = "0.1.0", package = "loro-rle" }
|
2023-11-28 13:01:01 +00:00
|
|
|
wasm-bindgen = { version = "=0.2.86", optional = true }
|
2023-07-14 08:38:53 +00:00
|
|
|
fxhash = "0.2.1"
|
2023-07-14 16:47:47 +00:00
|
|
|
enum-as-inner = "0.6.0"
|
|
|
|
string_cache = "0.8.7"
|
2023-11-28 13:01:01 +00:00
|
|
|
arbitrary = { version = "1.3.0", features = ["derive"] }
|
|
|
|
js-sys = { version = "0.3.60", optional = true }
|
2023-07-14 08:38:53 +00:00
|
|
|
|
|
|
|
[features]
|
2023-07-14 16:47:47 +00:00
|
|
|
wasm = ["wasm-bindgen", "js-sys"]
|