-
Notifications
You must be signed in to change notification settings - Fork 148
/
Cargo.toml
30 lines (26 loc) · 827 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "ssh2"
version = "0.9.4"
authors = ["Alex Crichton <[email protected]>", "Wez Furlong <[email protected]>", "Matteo Bigoi <[email protected]>"]
license = "MIT OR Apache-2.0"
keywords = ["ssh"]
readme = "README.md"
repository = "https://github.com/alexcrichton/ssh2-rs"
homepage = "https://github.com/alexcrichton/ssh2-rs"
documentation = "https://docs.rs/ssh2"
description = """
Bindings to libssh2 for interacting with SSH servers and executing remote
commands, forwarding local ports, etc.
"""
[features]
vendored-openssl = ["libssh2-sys/vendored-openssl"]
openssl-on-win32 = ["libssh2-sys/openssl-on-win32"]
[dependencies]
bitflags = "2"
libc = "0.2"
libssh2-sys = { path = "libssh2-sys", version = "0.3.0" }
parking_lot = "0.12"
[dev-dependencies]
tempfile = "3"
[workspace]
members = ['systest']