Skip to content

Commit

Permalink
Fix watch tests for linux & bump dependency versions (#104)
Browse files Browse the repository at this point in the history
* Fix #90
* Fix #103
* Update dependencies
  • Loading branch information
chipsenkbeil authored Jun 4, 2022
1 parent 4180ae2 commit baee1e2
Show file tree
Hide file tree
Showing 13 changed files with 377 additions and 39 deletions.
181 changes: 173 additions & 8 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,35 +25,35 @@ libssh = ["distant-ssh2/libssh"]
ssh2 = ["distant-ssh2/ssh2"]

[dependencies]
derive_more = { version = "0.99.16", default-features = false, features = ["display", "from", "error", "is_variant"] }
derive_more = { version = "0.99.17", default-features = false, features = ["display", "from", "error", "is_variant"] }
distant-core = { version = "=0.16.4", path = "distant-core", features = ["structopt"] }
flexi_logger = "0.18.0"
indoc = "1.0.3"
log = "0.4.14"
once_cell = "1.8.0"
rand = { version = "0.8.4", features = ["getrandom"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
structopt = "0.3.22"
flexi_logger = "0.18.1"
indoc = "1.0.6"
log = "0.4.17"
once_cell = "1.12.0"
rand = { version = "0.8.5", features = ["getrandom"] }
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
structopt = "0.3.26"
strum = { version = "0.21.0", features = ["derive"] }
sysinfo = "0.23.2"
tokio = { version = "1.12.0", features = ["full"] }
sysinfo = "0.23.13"
tokio = { version = "1.19.0", features = ["full"] }
terminal_size = "0.1.17"
termwiz = "0.15.0"
whoami = "1.1.2"
whoami = "1.2.1"

# Optional native SSH functionality
distant-ssh2 = { version = "=0.16.4", path = "distant-ssh2", default-features = false, features = ["serde"], optional = true }

[target.'cfg(unix)'.dependencies]
fork = "0.1.18"
fork = "0.1.19"

# [target.'cfg(windows)'.dependencies]
# sysinfo = "0.23.2"

[dev-dependencies]
assert_cmd = "2.0.0"
assert_fs = "1.0.4"
indoc = "1.0.3"
predicates = "2.0.2"
assert_cmd = "2.0.4"
assert_fs = "1.0.7"
indoc = "1.0.6"
predicates = "2.1.1"
rstest = "0.11.0"
4 changes: 3 additions & 1 deletion distant-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ derive_more = { version = "0.99.16", default-features = false, features = ["dere
futures = "0.3.16"
hex = "0.4.3"
log = "0.4.14"
notify = { version = "5.0.0-pre.14", features = ["serde"] }
notify = { version = "5.0.0-pre.15", features = ["serde"] }
normpath = "0.3.2"
once_cell = "1.8.0"
portable-pty = "0.7.0"
Expand All @@ -37,5 +37,7 @@ structopt = { version = "0.3.22", optional = true }

[dev-dependencies]
assert_fs = "1.0.4"
flexi_logger = "0.22.3"
indoc = "1.0.3"
predicates = "2.0.2"
rstest = "0.13.0"
Loading

0 comments on commit baee1e2

Please sign in to comment.