[package] name = "datacake-node" version = "0.4.1" edition = "2021" description = "The core cluster membership system built ontop of Quickwit's chitchat." license = "MIT" keywords = ["crdt", "databases", "distributed", "tokio", "async"] categories = ["concurrency", "data-structures", "asynchronous"] repository = "https://github.com/lnx-search/datacake" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1" thiserror = "1" flume = "0.10.14" async-trait = "0.1.59" tracing = "0.1" tokio-stream = "0.1.9" parking_lot = "0.12.1" rand = "0.8.5" futures = "0.3" crc32fast = "1.3.2" smallvec = "1" datacake-rpc = { version = "0.5", path = "../datacake-rpc" } datacake-crdt = { version = "0.4", path = "../datacake-crdt", features = ["rkyv-support"] } chitchat = { version = "0.5.1", package = "datacake-chitchat-fork" } tokio = { version = "1", default-features = false, features = ["sync", "time"] } rkyv = { version = "0.7.42", features = ["strict", "validation"] } [dev-dependencies] tracing-subscriber = "0.3.16" tokio = { version = "1", features = ["full"] } test-helper = { path = "../test-helper" } datacake-rpc = { version = "0.5", path = "../datacake-rpc", features = ["test-utils"] }