[package]
edition = "2021"
name = "hdk"
version = "0.7.0-dev.7"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Holochain HDK"
documentation = "https://docs.rs/hdk"
readme = "README.md"
keywords = [
"holochain",
"holo",
"hdk",
]
categories = ["cryptography"]
license = "CAL-1.0"
repository = "https://github.com/holochain/holochain/tree/develop/crates/hdk"
[features]
default = ["encoding"]
encoding = ["holo_hash/encoding"]
fixturators = [
"holochain_zome_types/fixturators",
"holo_hash/fixturators",
]
fuzzing = [
"holochain_zome_types/fuzzing",
"holo_hash/fuzzing",
]
mock = ["dep:mockall"]
properties = ["holochain_zome_types/properties"]
test_utils = [
"fixturators",
"hdi/test_utils",
"holo_hash/test_utils",
]
unstable-countersigning = ["holochain_zome_types/unstable-countersigning"]
unstable-functions = [
"holochain_zome_types/unstable-functions",
"hdi/unstable-functions",
]
[lib]
name = "hdk"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.hdi]
version = "=0.8.0-dev.4"
features = ["trace"]
[dependencies.hdk_derive]
version = "^0.7.0-dev.4"
[dependencies.holo_hash]
version = "^0.7.0-dev.3"
[dependencies.holochain_wasmer_guest]
version = "=0.0.101"
[dependencies.holochain_zome_types]
version = "^0.7.0-dev.6"
default-features = false
[dependencies.mockall]
version = "0.13"
optional = true
[dependencies.paste]
version = "1.0"
[dependencies.serde]
version = "1.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-core]
version = "0.1"
[dev-dependencies.trybuild]
version = "1.0"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies.getrandom]
version = "0.3"
[lints.clippy]
complexity = "deny"
correctness = "deny"
dbg_macro = "deny"
perf = "deny"
style = "deny"
[lints.clippy.cargo]
level = "allow"
priority = -1
[lints.clippy.nursery]
level = "allow"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.clippy.restriction]
level = "allow"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(build_wasm)",
"cfg(loom)",
]