• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vigna / webgraph-rs / 23365769388

20 Mar 2026 10:52PM UTC coverage: 68.228% (-3.0%) from 71.245%
23365769388

push

github

vigna
No le_bins,be_bins for webgraph

6655 of 9754 relevant lines covered (68.23%)

46582760.24 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/cli/src/check/mod.rs
1
/*
2
 * SPDX-FileCopyrightText: 2024 Tommaso Fontana
3
 * SPDX-FileCopyrightText: 2026 Sebastiano Vigna
4
 *
5
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
6
 */
7

8
use anyhow::Result;
9
use clap::Subcommand;
10

11
pub mod ef;
12
pub mod eq;
13
pub mod symm;
14

15
/// Checks coherence of files.​
16
#[derive(Subcommand, Debug)]
17
#[command(name = "check")]
18
pub enum SubCommands {
19
    Ef(ef::CliArgs),
20
    Eq(eq::CliArgs),
21
    Symm(symm::CliArgs),
22
}
23

24
pub fn main(subcommand: SubCommands) -> Result<()> {
×
25
    match subcommand {
×
26
        SubCommands::Ef(args) => ef::main(args),
×
27
        SubCommands::Eq(args) => eq::main(args),
×
28
        SubCommands::Symm(args) => symm::main(args),
×
29
    }
30
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc