Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rust/sbp2json/src/bin/json2json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
///
/// cat console-json-log.json | json2json
#[derive(Debug, Parser)]
#[clap(name = "json2json", verbatim_doc_comment)]
#[clap(name = "json2json", verbatim_doc_comment, version)]
struct Options {
/// Path to input file
input: Option<PathBuf>,
Expand Down
2 changes: 1 addition & 1 deletion rust/sbp2json/src/bin/json2sbp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
///
/// cat sbp.json | json2sbp
#[derive(Debug, Parser)]
#[clap(name = "json2sbp", verbatim_doc_comment)]
#[clap(name = "json2sbp", verbatim_doc_comment, version)]
struct Options {
/// Path to input file
input: Option<PathBuf>,
Expand Down
2 changes: 1 addition & 1 deletion rust/sbp2json/src/bin/sbp2json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
///
/// socat tcp:192.168.1.222:55555 - | sbp2json
#[derive(Debug, Parser)]
#[structopt(name = "sbp2json", verbatim_doc_comment)]
#[structopt(name = "sbp2json", verbatim_doc_comment, version)]
pub struct Options {
/// Path to input file
input: Option<PathBuf>,
Expand Down