Skip to content

Commit

Permalink
refactor(cli): ♻️ use measurements instead uom for units of measure
Browse files Browse the repository at this point in the history
  • Loading branch information
keinsell committed Jun 9, 2024
1 parent e83834b commit 381af6d
Show file tree
Hide file tree
Showing 12 changed files with 346 additions and 73 deletions.
19 changes: 19 additions & 0 deletions .idea/runConfigurations/Install_CLI__Production_.xml

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

210 changes: 210 additions & 0 deletions apps/cli/Cargo.lock

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

2 changes: 2 additions & 0 deletions apps/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ human-panic = "2.0.0"
clap_complete = "4.4.10"
dateless = "0.3.1"
iso8601-duration = { version = "0.2.0",features = ["serde", "chrono"] }
measurements = { version = "0.11.0",features = ["serde", "std", "from_str"] }
termimad = "0.29.2"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/cli/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pub async fn cli() {
stderrlog::new()
// .module(module_path!())
.show_level(true)
.verbosity(2)
.verbosity(0)
.show_module_names(true)
.init()
.unwrap();
Expand Down
Loading

0 comments on commit 381af6d

Please sign in to comment.