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
3 changes: 1 addition & 2 deletions archive/registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ lto = true
lto = true

[dependencies]
atty = { version = "0.2" }
clap = { version = "4.1", features = ["derive"] }
crossterm = { version = "0.26" }
crossterm = { version = "0.29" }
ntreg = { path = "../ntreg" }
ntstatuserror = { path = "../ntstatuserror" }
schemars = { version = "1.0" }
Expand Down
4 changes: 2 additions & 2 deletions archive/registry/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use crossterm::event;
use std::env;

use args::Arguments;
use atty::Stream;
use clap::Parser;
use crossterm::tty::{is_tty, Stream};
use schemars::schema_for;
use std::{io::{self, Read}, process::exit};

Expand All @@ -32,7 +32,7 @@ fn main() {
check_debug();

let args = Arguments::parse();
let input: Option<String> = if atty::is(Stream::Stdin) {
let input: Option<String> = if is_tty(Stream::Stdin) {
None
} else {
let mut buffer: Vec<u8> = Vec::new();
Expand Down
124 changes: 4 additions & 120 deletions sshdconfig/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 sshdconfig/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ lto = true
lto = true

[dependencies]
atty = { version = "0.2" }
chrono = { version = "0.4" }
clap = { version = "4.5", features = ["derive"] }
crossterm = { version = "0.27" }
crossterm = { version = "0.29" }
rust-i18n = { version = "3.1" }
schemars = "1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
Loading