2024-05-07 06:01:13 +00:00
|
|
|
[package]
|
2024-05-29 14:55:55 +00:00
|
|
|
name = "loro_fractional_index"
|
|
|
|
version = "0.16.2"
|
2024-05-07 06:01:13 +00:00
|
|
|
edition = "2021"
|
2024-05-29 14:55:55 +00:00
|
|
|
license = "MIT"
|
|
|
|
description = "Fraction index for Loro. Fork and modified from jamsocket/fractional_index"
|
|
|
|
repository = "https://github.com/loro-dev/loro/"
|
|
|
|
authors = ["Liang Zhao", "Zixuan Chen"]
|
|
|
|
categories = ["crdt", "collaborative-editing", "local-first"]
|
|
|
|
keywords = ["crdt", "local-first"]
|
2024-05-07 06:01:13 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
imbl = "^3.0"
|
2024-06-07 05:18:30 +00:00
|
|
|
smallvec = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive", "rc"], optional = true }
|
2024-05-07 06:01:13 +00:00
|
|
|
rand = { version = "^0.8" }
|
2024-09-05 08:03:47 +00:00
|
|
|
once_cell = { workspace = true }
|
2024-05-07 06:01:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
fraction_index = { version = "^2.0", package = "fractional_index" }
|
|
|
|
criterion = "^0.5.0"
|
|
|
|
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "fractional_index"
|
|
|
|
harness = false
|