1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-29 21:44:24 +03:00
wezterm/wezterm-ssh/Cargo.toml

54 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "wezterm-ssh"
2022-01-31 04:29:59 +03:00
version = "0.4.0"
authors = ["Wez Furlong <wez@wezfurlong.org>"]
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "More convenient higher level wrapper around libssh2"
license = "MIT"
documentation = "https://docs.rs/wezterm-ssh"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["libssh-rs", "ssh2"]
vendored-openssl = ["ssh2/vendored-openssl", "libssh-rs/vendored-openssl"]
vendored-openssl-ssh2 = ["ssh2/vendored-openssl"]
vendored-openssl-libssh-rs = ["libssh-rs/vendored-openssl"]
[dependencies]
anyhow = "1.0"
base64 = "0.21"
2021-10-03 23:37:19 +03:00
bitflags = "1.3"
camino = "1.0"
dirs-next = "2.0"
filedescriptor = { version="0.8", path = "../filedescriptor" }
filenamegen = "0.2"
gethostname = "0.4"
libc = "0.2"
log = "0.4"
portable-pty = { version="0.8", path = "../pty" }
regex = "1"
smol = "1.2"
ssh2 = {version="0.9.3", features=["openssl-on-win32"], optional = true}
libssh-rs = {version="0.2.1", features=["vendored"], optional = true}
#libssh-rs = {path="../../libssh-rs/libssh-rs", features=["vendored"], optional = true}
thiserror = "1.0"
2023-02-27 08:33:28 +03:00
socket2 = "0.5"
# Not used directly, but is used to centralize the openssl vendor feature selection
2022-01-31 04:45:12 +03:00
async_ossl = { path = "../async_ossl" }
[dev-dependencies]
assert_fs = "1.0.4"
clap = {version="4.0", features=["derive"]}
build(deps): bump the all group with 6 updates Bumps the all group with 6 updates: | Package | From | To | | --- | --- | --- | | [k9](https://github.com/aaronabramov/k9) | `0.11.6` | `0.12.0` | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.78` | `1.0.79` | | [serde](https://github.com/serde-rs/serde) | `1.0.193` | `1.0.194` | | [serde_json](https://github.com/serde-rs/json) | `1.0.109` | `1.0.110` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.5` | `4.4.6` | | [thiserror](https://github.com/dtolnay/thiserror) | `1.0.53` | `1.0.56` | Updates `k9` from 0.11.6 to 0.12.0 - [Commits](https://github.com/aaronabramov/k9/commits) Updates `anyhow` from 1.0.78 to 1.0.79 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.78...1.0.79) Updates `serde` from 1.0.193 to 1.0.194 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.193...v1.0.194) Updates `serde_json` from 1.0.109 to 1.0.110 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.109...v1.0.110) Updates `clap_complete` from 4.4.5 to 4.4.6 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.4.5...clap_complete-v4.4.6) Updates `thiserror` from 1.0.53 to 1.0.56 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.53...1.0.56) --- updated-dependencies: - dependency-name: k9 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
2024-01-03 18:43:36 +03:00
k9 = "0.12.0"
once_cell = "1.8"
predicates = "3.0"
env_logger = "0.11"
2023-07-10 04:26:46 +03:00
rstest = "0.18"
2022-02-07 04:32:10 +03:00
shell-words = "1.1"
smol-potat = "1.1.2"
termwiz = { version = "0.22", path = "../termwiz" }
whoami = "1.1"