2023-07-14 08:05:06 +00:00
|
|
|
[package]
|
|
|
|
name = "loro-common"
|
2024-04-09 08:23:48 +00:00
|
|
|
version = "0.4.0"
|
2023-07-14 08:05:06 +00:00
|
|
|
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."
|
2024-02-16 03:25:12 +00:00
|
|
|
documentation = "https://docs.rs/loro/"
|
|
|
|
homepage = "https://loro.dev"
|
|
|
|
authors = ["Zixuan Chen", "Liang Zhao"]
|
|
|
|
categories = ["data-structures", "crdt", "collaborative-editing", "local-first"]
|
|
|
|
keywords = ["crdt", "local-first"]
|
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"
|
2024-04-09 08:23:48 +00:00
|
|
|
rle = { path = "../rle", version = "0.4.0", package = "loro-rle" }
|
2024-01-29 14:40:33 +00:00
|
|
|
wasm-bindgen = { version = "=0.2.90", 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"
|
2024-01-02 12:11:22 +00:00
|
|
|
string_cache = "0.8"
|
2023-11-28 13:01:01 +00:00
|
|
|
arbitrary = { version = "1.3.0", features = ["derive"] }
|
|
|
|
js-sys = { version = "0.3.60", optional = true }
|
2024-04-01 09:29:07 +00:00
|
|
|
serde_columnar = { workspace = true }
|
2024-02-29 14:55:57 +00:00
|
|
|
nonmax = "0.5.5"
|
2023-07-14 08:38:53 +00:00
|
|
|
|
|
|
|
[features]
|
2023-07-14 16:47:47 +00:00
|
|
|
wasm = ["wasm-bindgen", "js-sys"]
|