irontide 1.0.1

A Rust BitTorrent library — ergonomic facade for the irontide crate family
Documentation
//! Piece storage, verification, and disk I/O for `BitTorrent`.
//!
//! Re-exports from [`torrent_storage`].

pub use irontide_storage::{
    // ARC disk cache
    ArcCache,
    // Bit-vector for piece completion
    Bitfield,
    // Per-piece chunk tracking
    ChunkTracker,
    // Error types
    Error,
    // Piece-to-file mapping
    FileMap,
    FileSegment,
    FilesystemStorage,
    // Storage backends
    MemoryStorage,
    MmapStorage,
    // Pre-allocation mode
    PreallocateMode,
    Result,
    // Storage trait
    TorrentStorage,
};