[package] name = "kitsune_p2p_block" version = "0.5.0-dev.2" description = "(un)Block datatype for kitsune_p2p" license = "Apache-2.0" homepage = "https://github.com/holochain/holochain" documentation = "https://docs.rs/kitsune_p2p_block" authors = ["Holochain Core Dev Team "] keywords = ["holochain", "holo", "p2p", "dht", "networking"] categories = ["network-programming"] edition = "2021" # reminder - do not use workspace deps [dependencies] kitsune_p2p_timestamp = { version = "^0.5.0-dev.0", path = "../timestamp" } kitsune_p2p_bin_data = { version = "^0.5.0-dev.2", path = "../bin_data" } serde = { version = "1.0", features = ["derive"] } [lints] workspace = true [features] sqlite-encrypted = [ "kitsune_p2p_timestamp/sqlite-encrypted", "kitsune_p2p_bin_data/sqlite-encrypted", ] sqlite = ["kitsune_p2p_timestamp/sqlite", "kitsune_p2p_bin_data/sqlite"]