[package] name = "yrs-kafka" description = "Yrs synchronization and persistence using RocksDB & Kafka" version = "0.1.1" edition = "2021" license = "WTFPL" repository = "https://github.com/w4/yrs-kafka" keywords = ["yrs", "kafka", "rocksdb", "crdt", "persistence"] categories = ["database"] authors = ["Jordan Doyle "] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = "0.3" log = "0.4" parking_lot = "0.12" rand = "0.8" rdkafka = { version = "0.36", features = ["tokio"] } rocksdb = "0.22" thiserror = "1.0" tokio = { version = "1.37", features = ["sync"] } uuid = { version = "1.8", features = ["v4"] } yoke = { version = "0.7", features = ["derive"] } yrs = "0.18" [dev-dependencies] testcontainers = "0.15" tempfile = "3.10" tokio = { version = "1.37", features = ["full"] }