rustsec-admin 0.3.0

Admin utility for maintaining the RustSec Advisory Database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `rustsec-admin web`: Renderer for RustSec Advisory DB web site:
//!
//! https://rustsec.org

use abscissa_core::{Command, Runnable};
use gumdrop::Options;

/// `rustsec-admin web` subcommand
#[derive(Command, Debug, Default, Options)]
pub struct WebCmd {}

impl Runnable for WebCmd {
    fn run(&self) {
        crate::web::render_advisories();
    }
}