[package] name = "crdt-richtext" version = "0.1.1" edition = "2021" license = "MIT" readme = "README.md" homepage = "https://github.com/loro-dev/crdt-richtext" description = "Richtext CRDT, Rust implementation of Peritext and Fugue" repository = "https://github.com/loro-dev/crdt-richtext" authors = ["zxch3n "] keywords = ["crdt", "p2p", "richtext", "text-editing"] include = ["Cargo.toml", "src/**/*.rs", "benches/**/*.rs", "examples/**/*.rs"] documentation = "https://docs.rs/crdt-richtext" [workspace] members = ["./crdt-richtext-wasm"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] crdt-list = { version = "0.4.1", optional = true, features = ["fuzzing"] } rand = { version = "0.8.5", optional = true } arbitrary = { version = "1.2.3", optional = true } enum-as-inner = "0.5.1" arref = "0.1.0" debug-log = "0.1.4" heapless = "0.7.16" fxhash = "0.2.1" generic-btree = { version = "0.3.0" } bitvec = "1.0.1" append-only-bytes = { version = "0.1.5", features = ["u32_range"] } string_cache = "0.8.6" smallvec = "1.10.0" serde_columnar = "0.2.5" serde = { version = "1.0.140", features = ["derive"] } flate2 = "1.0.25" [dev-dependencies] rand = { version = "0.8.5" } pprof = { version = "0.11.1", features = [ "flamegraph", "criterion", "frame-pointer", ] } criterion = "0.4.0" arbtest = "0.2.0" color-backtrace = "0.5.1" ctor = "0.1.26" dhat = "0.3.2" serde_json = "1.0.94" arbitrary = { version = "1.2.3", features = ["derive"] } flate2 = "1.0.25" [features] test = ["crdt-list", "rand", "arbitrary"] [[bench]] name = "bench" harness = false [[bench]] name = "rich-text" harness = false