-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NOISSUE - Create
lib.rs
, to allow documentation tests to be written…
… and run: * Add high level description of public modules in `lib.rs` * Add docs and doc-tests for args module * Add clippy level to enforce use of doc markdown Signed-off-by: joshmc <[email protected]>
- Loading branch information
1 parent
d520b70
commit 2a7d2bb
Showing
10 changed files
with
64 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
[package] | ||
authors = ["anderejd <[email protected]>"] | ||
categories = ["development-tools", "serialization"] | ||
description = "TODO: Write description" | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
keywords = ["unsafe"] | ||
name = "cargo-geiger-serde" | ||
repository = "https://github.com/rust-secure-code/cargo-geiger" | ||
version = "0.1.0" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#![deny(clippy::cargo)] | ||
#![deny(clippy::doc_markdown)] | ||
#![forbid(unsafe_code)] | ||
#![forbid(warnings)] | ||
|
||
/// Argument parsing | ||
pub mod args; | ||
/// Bootstrapping functions for structs required by the CLI | ||
pub mod cli; | ||
/// Construction of the dependency graph | ||
pub mod graph; | ||
/// Mapping functionality from `cargo::core` to `cargo_metadata` | ||
pub mod mapping; | ||
/// Functions for scanning projects for unsafe code | ||
pub mod scan; | ||
|
||
/// Inner display formatting | ||
mod format; | ||
/// Tree construction | ||
mod tree; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "geiger" | ||
authors = ["anderejd <[email protected]>"] | ||
categories = ["development-tools", "parsing"] | ||
description = "Some library parts of cargo-geiger, decoupled from cargo." | ||
version = "0.4.5" | ||
edition = "2018" | ||
authors = ["anderejd <[email protected]>"] | ||
repository = "https://github.com/rust-secure-code/cargo-geiger" | ||
readme = "README.md" | ||
keywords = ["unsafe"] | ||
categories = ["development-tools", "parsing"] | ||
license = "Apache-2.0/MIT" | ||
name = "geiger" | ||
readme = "README.md" | ||
repository = "https://github.com/rust-secure-code/cargo-geiger" | ||
version = "0.4.5" | ||
|
||
[badges] | ||
maintenance = { status = "experimental" } | ||
|