Skip to content

Commit

Permalink
Merge pull request #410 from KisaragiEffective/fix/deps/drop-is-terminal
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective authored May 19, 2024
2 parents 7796112 + 50da29d commit d42a338
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
12 changes: 0 additions & 12 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "reinventory-manager"
version = "0.2.1"
edition = "2021"
rust-version = "1.60"
rust-version = "1.78.0"
authors = [
"KisaragiEffective <kisaragi.effective@gmail.com>",
"kisaragi marine <kisaragi.marine@gmail.com>",
Expand All @@ -19,7 +19,6 @@ categories = ["command-line-utilities"]
[dependencies]
anyhow = "1.0.82"
async-recursion = "1.1.1"
is-terminal = "0.4.12"
base64 = "0.22.1"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.4", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::io::IsTerminal;
use clap::{Parser, Subcommand};
use email_address::EmailAddress;
use anyhow::{bail, Result};
use fern::colors::ColoredLevelConfig;
use log::{debug, LevelFilter, warn};
use derive_more::{Display, FromStr};
use is_terminal::IsTerminal;
use strum::{EnumString, Display as StrumDisplay};
use serde::Serialize;
use crate::model::{AbsoluteInventoryPath, LoginInfo, Password, RecordId, UserId, UserIdentifyPointer};
Expand Down

0 comments on commit d42a338

Please sign in to comment.