holochain_cascade 0.1.6-beta-rc.0

Logic for cascading updates to Holochain state and network interaction
Documentation
[package]
name = "holochain_cascade"
version = "0.1.6-beta-rc.0"
description = "Logic for cascading updates to Holochain state and network interaction"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cascade"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2021"

[dependencies]
derive_more = "0.99.3"
either = "1.5"
fallible-iterator = "0.2"
fixt = { version = "^0.1.3-beta-rc.0", path = "../fixt" }
futures = "0.3"
ghost_actor = "=0.3.0-alpha.4"
hdk = { version = "^0.1.4-beta-rc.0", path = "../hdk" }
hdk_derive = { version = "^0.1.4-beta-rc.0", path = "../hdk_derive" }
holo_hash = { version = "^0.1.4-beta-rc.0", path = "../holo_hash", features = ["full"] }
holochain_sqlite = { version = "^0.1.6-beta-rc.0", path = "../holochain_sqlite" }
holochain_p2p = { version = "^0.1.6-beta-rc.0", path = "../holochain_p2p" }
holochain_serialized_bytes = "=0.0.51"
holochain_state = { version = "^0.1.6-beta-rc.0", path = "../holochain_state" }
holochain_types = { version = "^0.1.6-beta-rc.0", path = "../holochain_types" }
holochain_zome_types = { version = "^0.1.4-beta-rc.0", path = "../holochain_zome_types" }
observability = "0.1.3"
kitsune_p2p = { version = "^0.1.5-beta-rc.0", path = "../kitsune_p2p/kitsune_p2p" }
serde = { version = "1.0", features = [ "derive" ] }
serde_derive = "1.0"
tokio = { version = "1.11", features = ["full"] }
thiserror = "1.0"
tracing = "0.1"
tracing-futures = "0.2"

async-trait = { version = "0.1", optional = true }
mockall = { version = "0.10.2", optional = true }

[dev-dependencies]
isotest = "0"
matches = "0.1"
pretty_assertions = "0.7.2"
test-case = "2.1"

[features]
default = ["test_utils"]

test_utils = ["async-trait", "mockall", "holochain_types/test_utils"]

sqlite-encrypted = [
    "holo_hash/sqlite-encrypted",
    "holochain_sqlite/db-encryption",
    "holochain_state/sqlite-encrypted",
    "holochain_types/sqlite-encrypted",
    "holochain_zome_types/sqlite-encrypted",
    "kitsune_p2p/sqlite-encrypted",
]
sqlite = [
    "holo_hash/sqlite",
    "holochain_sqlite/no-deps",
    "holochain_state/sqlite",
    "holochain_types/sqlite",
    "holochain_zome_types/sqlite",
    "kitsune_p2p/sqlite",
]