ipfrs-network 0.2.0

Peer-to-peer networking layer with libp2p and QUIC for IPFRS
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 = "2021"
rust-version = "1.90"
name = "ipfrs-network"
version = "0.2.0"
authors = ["TensorLogic Architect"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Peer-to-peer networking layer with libp2p and QUIC for IPFRS"
homepage = "https://github.com/cool-japan/ipfrs"
documentation = "https://docs.rs/ipfrs-network"
readme = "README.md"
keywords = [
    "ipfs",
    "p2p",
    "libp2p",
    "quic",
    "networking",
]
categories = ["network-programming"]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/ipfrs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.cid]
version = "0.11"
features = ["serde-codec"]

[dependencies.dashmap]
version = "6.2"

[dependencies.futures]
version = "0.3"

[dependencies.futures-util]
version = "0.3"

[dependencies.ipfrs-core]
version = "0.2.0"

[dependencies.ipfrs-tensorlogic]
version = "0.2.0"

[dependencies.libp2p]
version = "0.56"
features = [
    "tcp",
    "tokio",
    "quic",
    "noise",
    "yamux",
    "gossipsub",
    "kad",
    "identify",
    "ping",
    "macros",
    "autonat",
    "dcutr",
    "relay",
    "mdns",
    "rsa",
]

[dependencies.libp2p-quic]
version = "0.13"

[dependencies.multihash]
version = "0.19"

[dependencies.multihash-codetable]
version = "0.2"
features = [
    "sha2",
    "sha3",
    "blake2b",
    "blake2s",
    "blake3",
]

[dependencies.parking_lot]
version = "0.12"

[dependencies.prometheus]
version = "0.14"

[dependencies.quinn]
version = "0.11"

[dependencies.rand]
version = "0.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.52"
features = [
    "full",
    "sync",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "json",
]