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

Commit

Permalink
Update dependency versions, remove some feature flags of things not used
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganneff committed Oct 19, 2024
1 parent a5d6ed6 commit e72b08d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 111 deletions.
128 changes: 24 additions & 104 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ repository = "https://github.com/Ganneff/tm"

[dependencies]
anyhow = "^1.0"
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
clap-verbosity-flag = "^2"
directories = "^5.0"
fehler = "1.0.0"
flexi_logger = { version = "^0.25", features = ["colors"] }
itertools = "0.11"
lazy_static = "^1.5"
log = "^0.4"
Expand All @@ -24,14 +23,14 @@ rand = "^0.8"
shellexpand = { version = "3.1.0", features = ["full"] }
shlex = "1.3.0"
thiserror = "^1.0"
tmux_interface = { version = "^0.3.2", features = ["tmux_2_8", "cmd_alias"], default-features = false }
tracing = { version = "0.1.37", features = ["attributes"], default-features = false }
tracing-subscriber = { features = ["fmt", "ansi", "tracing-log", "chrono", "smallvec"], default-features = false, version = "0.3.18" }
tmux_interface = { version = "^0.3" }
tracing = { version = "0.1.40", features = ["attributes"], default-features = false }
tracing-subscriber = { features = ["ansi", "tracing-log", "chrono"], default-features = false, version = "0.3.18" }

[workspace]

[dev-dependencies]
regex = "1.10"
regex = "1.11"

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(tarpaulin_include)"] }
2 changes: 1 addition & 1 deletion src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ impl Session {
match Tmux::with_command(
SetOption::new()
.window()
.target(&target)
.target_pane(&target)
.option(option)
.value(value),
)
Expand Down

0 comments on commit e72b08d

Please sign in to comment.