holochain 0.0.135

Holochain, a framework for distributed applications
Documentation
[package]
name = "holochain"
version = "0.0.135"
description = "Holochain, a framework for distributed applications"
license-file = "LICENSE_CAL-1.0"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
edition = "2021"

[dependencies]
anyhow = "1.0.26"
async-trait = "0.1"
base64 = "0.13"
byteorder = "1.3.4"
cfg-if = "0.1"
chrono = "0.4.6"
derive_more = "0.99.3"
directories = "2.0.2"
either = "1.5.0"
fallible-iterator = "0.2.0"
fixt = { version = "0.0.10", path = "../fixt" }
futures = "0.3.1"
ghost_actor = "0.3.0-alpha.4"
holo_hash = { version = "0.0.23", path = "../holo_hash", features = ["full"] }
holochain_cascade = { version = "0.0.35", path = "../holochain_cascade" }
holochain_conductor_api = { version = "0.0.35", path = "../holochain_conductor_api" }
holochain_keystore = { version = "0.0.34", path = "../holochain_keystore" }
holochain_p2p = { version = "0.0.34", path = "../holochain_p2p" }
holochain_sqlite = { version = "0.0.34", path = "../holochain_sqlite" }
holochain_serialized_bytes = "=0.0.51"
holochain_state = { version = "0.0.35", path = "../holochain_state" }
holochain_types = { version = "0.0.34", path = "../holochain_types" }
holochain_wasmer_host = "=0.0.77"
holochain_websocket = { version = "0.0.34", path = "../holochain_websocket" }
holochain_zome_types = { version = "0.0.30", path = "../holochain_zome_types", features = ["full"] }
human-panic = "1.0.3"
kitsune_p2p = { version = "0.0.30", path = "../kitsune_p2p/kitsune_p2p" }
kitsune_p2p_types = { version = "0.0.22", path = "../kitsune_p2p/types" }
lazy_static = "1.4.0"
mockall = "0.10.2"
mr_bundle = { version = "0.0.10", path = "../mr_bundle" }
must_future = "0.1.1"
nanoid = "0.3"
num_cpus = "1.8"
observability = "0.1.3"
once_cell = "1.4.1"
one_err = "0.0.5"
parking_lot = "0.10"
predicates = "1.0.4"
rand = "0.7"
ring = "0.16"
rpassword = "5.0.1"
rusqlite = { version = "0.26" }
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0.51", features = [ "preserve_order" ] }
serde_yaml = "0.8"
shrinkwraprs = "0.3.0"
sodoken = "=0.0.1"
structopt = "0.3.11"
strum = "0.18.0"
tempfile = "3.3"
thiserror = "1.0.22"
tokio = { version = "1.11", features = [ "full"] }
tokio-stream = { version = "0.1", features = [ "sync", "net" ] }
holochain_util = { version = "0.0.9", path = "../holochain_util" }
toml = "0.5.6"
tracing = "0.1.26"
tracing-futures = "0.2.5"
tracing-subscriber = "0.2.19"
url = "1.7.2"
url2 = "0.0.6"
url_serde = "0.2.0"
uuid = { version = "0.7", features = [ "serde", "v4" ] }
xsalsa20poly1305 = "0.6.0"
holochain_wasm_test_utils = { version = "0.0.34", path = "../test_utils/wasm" }
tiny-keccak = { version = "2.0.2", features = ["keccak", "sha3"] }
async-recursion = "0.3"

# Dependencies for test_utils: keep in sync with below
hdk = { version = "0.0.129", path = "../hdk", optional = true }
matches = {version = "0.1.8", optional = true }
holochain_test_wasm_common = { version = "0.0.30", path = "../test_utils/wasm_common", optional = true  }
unwrap_to = { version = "0.1.0", optional = true }
itertools = { version = "0.10", optional = false }

[target.'cfg(unix)'.dependencies]
sd-notify = "0.3.0"


[dev-dependencies]
anyhow = "1.0.26"
assert_cmd = "1.0.1"
criterion = { version = "0.3", features = [ "async_tokio" ] }
kitsune_p2p_bootstrap = { version = "0.0.9", path = "../kitsune_p2p/bootstrap" }
maplit = "1"
pretty_assertions = "0.6.1"
reqwest = "0.11.2"
serial_test = "0.4.0"
test-case = "1.2.1"

# Dependencies for test_utils: keep in sync with above
hdk = { version = "0.0.129", path = "../hdk", optional = false }
matches = {version = "0.1.8", optional = false }
holochain_test_wasm_common = { version = "0.0.30", path = "../test_utils/wasm_common", optional = false  }
unwrap_to = { version = "0.1.0", optional = false }
arbitrary = { version = "1.0", features = ["derive"] }

[build-dependencies]
serde = { version = "1.0", features = [ "derive" ] }
serde_json = { version = "1.0.51" }
toml = "0.5.6"
chrono = { version = "0.4.6", features = [ "serde" ] }
hostname = "0.3.1"

[[bench]]
name = "bench"
harness = false

[[bench]]
name = "consistency"
harness = false

[lib]
name = "holochain"
path = "src/lib.rs"

[[bin]]
name = "holochain"
path = "src/bin/holochain/main.rs"

[features]
default = ["slow_tests", "test_utils", "no-deps"]

# Exposes additional functionality only needed for integration tests.
# This feature should be turned off for production builds.
test_utils = [
  "ghost_actor/test_utils",
  "hdk",
  "holochain_sqlite/test_utils",
  "holochain_state/test_utils",
  "holochain_types/test_utils",
  "holochain_zome_types/test_utils",
  "kitsune_p2p_types/test_utils",
  "kitsune_p2p/test_utils",
  "holochain_p2p/mock_network",
  "matches",
  "holochain_test_wasm_common",
  "unwrap_to"
]

# Wasm ribosome tests take > 60 seconds - let's only run them in CI
slow_tests = []

# Includes the wasm build script, which we don't need when not building wasms
build_wasms = ['holochain_wasm_test_utils/build']
only_check_wasms = ['holochain_wasm_test_utils/only_check']

# Enables at-rest encryption of the SQLite database.
# Incompatible with "no-deps".
db-encryption = ['holochain_sqlite/db-encryption']

# Compile SQLite from source rather than depending on a library.
# Incompatible with "db-encryption"
no-deps = ['holochain_sqlite/no-deps']