[package]
edition = "2024"
rust-version = "1.97"
name = "zenkey-fleet"
version = "0.11.0"
authors = ["Marc Pardo <p13marc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fleet engine for keyspace-v2 Zenoh tooling: disciplined fan-in queries, liveliness roster, registry-slice sets, schema-aware decode, live key-tree monitoring — the shared core of zenctl and zengui"
readme = "README.md"
keywords = [
"zenoh",
"keyspace",
"explorer",
"fleet",
]
categories = [
"network-programming",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/p13marc/zenkey"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
"-Zunstable-options",
"--generate-link-to-definition",
]
[features]
blob = ["dep:zblob"]
decode = ["zenkey/decode"]
decode-cdr = ["zenkey/decode-cdr"]
decode-protobuf = [
"zenkey/decode-protobuf",
"dep:prost-reflect",
]
default = ["decode"]
validate-json = ["zenkey/validate-json"]
[lib]
name = "zenkey_fleet"
path = "src/lib.rs"
[[test]]
name = "adminspace"
path = "tests/adminspace.rs"
[[test]]
name = "attachment"
path = "tests/attachment.rs"
[[test]]
name = "blob"
path = "tests/blob.rs"
[[test]]
name = "blob_tier2"
path = "tests/blob_tier2.rs"
[[test]]
name = "call_attachment"
path = "tests/call_attachment.rs"
[[test]]
name = "codec"
path = "tests/codec.rs"
[[test]]
name = "describe_sweep"
path = "tests/describe_sweep.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "doctor"
path = "tests/doctor.rs"
[[test]]
name = "doctor_listen"
path = "tests/doctor_listen.rs"
[[test]]
name = "expect"
path = "tests/expect.rs"
[[test]]
name = "facts_registry"
path = "tests/facts_registry.rs"
[[test]]
name = "field"
path = "tests/field.rs"
[[test]]
name = "gen"
path = "tests/gen.rs"
[[test]]
name = "lazy"
path = "tests/lazy.rs"
[[test]]
name = "ledger"
path = "tests/ledger.rs"
[[test]]
name = "matching"
path = "tests/matching.rs"
[[test]]
name = "media_introspect"
path = "tests/media_introspect.rs"
[[test]]
name = "node_scope"
path = "tests/node_scope.rs"
[[test]]
name = "origin_attach"
path = "tests/origin_attach.rs"
[[test]]
name = "producer"
path = "tests/producer.rs"
[[test]]
name = "querier"
path = "tests/querier.rs"
[[test]]
name = "record"
path = "tests/record.rs"
[[test]]
name = "registry_sweep"
path = "tests/registry_sweep.rs"
[[test]]
name = "report_contract"
path = "tests/report_contract.rs"
[[test]]
name = "retire"
path = "tests/retire.rs"
[[test]]
name = "schema_reask"
path = "tests/schema_reask.rs"
[[test]]
name = "scout"
path = "tests/scout.rs"
[[test]]
name = "seeding"
path = "tests/seeding.rs"
[[test]]
name = "serve"
path = "tests/serve.rs"
[[test]]
name = "session_open"
path = "tests/session_open.rs"
[[test]]
name = "stamper"
path = "tests/stamper.rs"
[[test]]
name = "stats"
path = "tests/stats.rs"
[[test]]
name = "streams"
path = "tests/streams.rs"
[[test]]
name = "topology"
path = "tests/topology.rs"
[[test]]
name = "tree"
path = "tests/tree.rs"
[[test]]
name = "watchdog"
path = "tests/watchdog.rs"
[[bench]]
name = "fleet"
path = "benches/fleet.rs"
harness = false
required-features = ["decode"]
[dependencies.arc-swap]
version = "1"
[dependencies.base64]
version = "0.23"
[dependencies.ciborium]
version = "0.2"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
default-features = false
[dependencies.prost-reflect]
version = "0.16"
features = ["serde"]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sipper]
version = "0.1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.zblob]
version = "0.3"
optional = true
[dependencies.zenkey]
version = "0.7.0"
features = ["schema"]
[dependencies.zenoh]
version = "1.10"
features = ["unstable"]
[dependencies.zenoh-ext]
version = "1.10"
features = ["unstable"]
[dev-dependencies.ciborium]
version = "0.2"
[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false
[dev-dependencies.prost-reflect]
version = "0.16"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.zenkey]
version = "0.7.0"
features = [
"decode-protobuf",
"decode-cdr",
"validate-json",
]