Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gordyf committed Nov 21, 2024
1 parent 896fddc commit 631ae59
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use tokio::sync::watch;
use tokio::task;
use tokio::time;

#[derive(Parser, Clone)]
#[derive(Parser)]
pub struct RunArgs {
#[arg(short, long)]
input_topic: String,
Expand Down
2 changes: 1 addition & 1 deletion src/commands/simulate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use clap::Parser;
use jiff::{Timestamp, ToSpan};
use pid::Pid;

#[derive(Parser, Clone)]
#[derive(Parser)]
pub struct SimulateArgs {
#[arg(short, long)]
input_file: String,
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct Args {
command: Commands,
}

#[derive(Subcommand, Clone)]
#[derive(Subcommand)]
enum Commands {
Run(RunArgs),
Simulate(SimulateArgs),
Expand Down

0 comments on commit 631ae59

Please sign in to comment.