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 mph;
11pub mod sf;
12
13/// Deprecated alias of [`crate::front_coded_list`]
14#[deprecated(
15    since = "5.2.0",
16    note = "please use `swh_graph::front_coded_list` instead"
17)]
18pub mod fcl {
19    /// Deprecated alias of [`crate::front_coded_list::FrontCodedList`]
20    #[deprecated(
21        since = "5.2.0",
22        note = "please use `swh_graph::front_coded_list::FrontCodedList` instead"
23    )]
24    pub use crate::front_coded_list::FrontCodedList;
25}