swh_graph/java_compat/
mod.rs

1// Copyright (C) 2023  The Software Heritage developers
2// See the AUTHORS file at the top-level directory of this distribution
3// License: GNU General Public License version 3, or any later version
4// See top-level LICENSE file for more information
5
6//! Structures to load file created with legacy swh-graph implementation
7//! written in Java.
8//!
9//! `mph`, and `sf` are imported [from sux-rs](https://archive.softwareheritage.org/swh:1:dir:5aef0244039204e3cbe1424f645c9eadcc80956f;origin=https://github.com/vigna/sux-rs;visit=swh:1:snp:855180f9102fd3d7451e98f293cdd90cff7f17d9;anchor=swh:1:rev:9cafac06c95c2d916b76dc374a6f9d976bf65456)
10pub mod bit_vector;
11pub mod mph;
12pub mod sf;
13
14/// Deprecated alias of [`crate::front_coded_list`]
15#[deprecated(
16    since = "5.2.0",
17    note = "please use `swh_graph::front_coded_list` instead"
18)]
19pub mod fcl {
20    /// Deprecated alias of [`crate::front_coded_list::FrontCodedList`]
21    #[deprecated(
22        since = "5.2.0",
23        note = "please use `swh_graph::front_coded_list::FrontCodedList` instead"
24    )]
25    pub use crate::front_coded_list::FrontCodedList;
26}