cargo_graphmod/lib.rs
1/**
2 * Copyright 2023 Thomas Hügel.
3 * This file is part of Cargo Graphmod.
4 * SPDX-License-Identifier: GPL-3.0-only
5 */
6
7#[doc = include_str!("../README.md")]
8pub mod app_builder;
9mod dependencies;
10mod dependencies_graph;
11mod dependencies_processor;
12mod files_reader;
13mod formatter;
14mod parser;
15mod trie;