iroh-topic-tracker 0.2.0

Iroh universal (gossip) topic tracker based on @Nuhvi's mainline draft proposal: https://github.com/bittorrent/bittorrent.org/pull/174.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "iroh-topic-tracker"
version = "0.2.0"
authors = ["Zacharias Boehler <rustonbsd@mailfence.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Iroh universal (gossip) topic tracker based on @Nuhvi's mainline draft proposal: https://github.com/bittorrent/bittorrent.org/pull/174."
readme = "README.md"
keywords = [
    "gossip",
    "iroh",
    "pubsub",
    "networking",
    "tracker",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/rustonbsd/iroh-topic-tracker"

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

[[example]]
name = "gossip_chat"
path = "examples/gossip_chat.rs"

[[test]]
name = "tests"
path = "tests/tests.rs"

[dependencies.anyhow]
version = "1"

[dependencies.bytes]
version = "1"
features = ["serde"]

[dependencies.dht]
version = "6.2.0"
features = ["async"]
default-features = false

[dependencies.ed25519-dalek]
version = "3.0.0-rc.0"
features = ["rand_core"]
default-features = false

[dependencies.futures-lite]
version = "2"

[dependencies.hex]
version = "0.4"

[dependencies.iroh]
version = "1"

[dependencies.iroh-gossip]
version = "0.101"

[dependencies.n0-future]
version = "0.3"

[dependencies.n0-watcher]
version = "1"

[dependencies.postcard]
version = "1"
features = [
    "alloc",
    "use-std",
    "experimental-derive",
]
default-features = false

[dependencies.rand]
version = "0.10"
features = [
    "std",
    "std_rng",
]
default-features = false

[dependencies.serde]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.11"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"
features = ["std"]
default-features = false

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "std",
    "env-filter",
    "ansi",
]
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]