2023-07-14 08:05:06 +00:00
|
|
|
[package]
|
|
|
|
name = "loro-common"
|
2025-01-03 18:14:02 +00:00
|
|
|
version = "1.2.7"
|
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"
|
2024-05-10 13:14:17 +00:00
|
|
|
repository = "https://github.com/loro-dev/loro"
|
2024-02-16 03:25:12 +00:00
|
|
|
authors = ["Zixuan Chen", "Liang Zhao"]
|
2024-08-29 15:07:47 +00:00
|
|
|
categories = []
|
2024-02-16 03:25:12 +00:00
|
|
|
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]
|
2025-01-03 18:14:02 +00:00
|
|
|
rle = { path = "../rle", version = "1.2.7", package = "loro-rle" }
|
2024-06-07 05:18:30 +00:00
|
|
|
serde = { workspace = true }
|
2024-09-19 11:22:39 +00:00
|
|
|
serde_json = { workspace = true, optional=true }
|
2023-07-14 08:38:53 +00:00
|
|
|
thiserror = "1.0.43"
|
2024-05-09 07:22:34 +00:00
|
|
|
wasm-bindgen = { version = "=0.2.92", 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"
|
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"
|
2024-06-12 03:43:02 +00:00
|
|
|
leb128 = "0.2.5"
|
2023-07-14 08:38:53 +00:00
|
|
|
|
|
|
|
[features]
|
2023-07-14 16:47:47 +00:00
|
|
|
wasm = ["wasm-bindgen", "js-sys"]
|
2024-05-13 13:37:10 +00:00
|
|
|
counter = []
|