2023-07-14 08:05:06 +00:00
|
|
|
[package]
|
|
|
|
name = "loro-preload"
|
2024-02-16 03:30:56 +00:00
|
|
|
version = "0.2.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 = "Loro internal lib for loading data"
|
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:25:58 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-10-29 06:02:13 +00:00
|
|
|
serde_columnar = { version = "0.3.2" }
|
2024-02-16 03:30:56 +00:00
|
|
|
loro-common = { path = "../loro-common", version = "0.2.0" }
|
2023-07-17 17:23:49 +00:00
|
|
|
bytes = "1.4.0"
|