Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Update Pargs version and bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ebcrowder committed Aug 27, 2020
1 parent cc1bccb commit 398cdc2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_ledger"
version = "0.3.1"
version = "0.4.0"
authors = ["ebcrowder <[email protected]>"]
edition = "2018"
license = "GPL-3.0"
Expand All @@ -14,7 +14,7 @@ readme = "README.md"
serde_yaml = "0.8.13"
serde = { version = "1.0.114", features = ["derive"] }
csv = "1.1.3"
pargs = "0.1.4"
pargs = "0.2.1"
colored = "2.0.0"
monee = "0.0.5"
chrono = { version = "0.4", features = ["serde"] }
6 changes: 3 additions & 3 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mod version;

use crate::error::{Error, Result};
use crate::model::ledger::Group;
use pargs::*;
use pargs::Pargs;
use std::env;

pub fn run() -> Result<()> {
Expand All @@ -28,11 +28,11 @@ pub fn run() -> Result<()> {
String::from("-s"),
];

let Matches {
let Pargs {
command_args,
option_args,
..
} = pargs::parse(
} = Pargs::parse(
args,
expected_command_args,
expected_flag_args,
Expand Down

0 comments on commit 398cdc2

Please sign in to comment.