-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (39 loc) · 1.02 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "remotefs SSH client library"
documentation = "https://docs.rs/remotefs-ssh"
edition = "2021"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["remotefs", "ssh-client", "scp-client", "sftp-client"]
license = "MIT"
name = "remotefs-ssh"
readme = "README.md"
repository = "https://github.com/remotefs-rs/remotefs-rs-ssh"
version = "0.5.0"
rust-version = "1.71.1"
[dependencies]
chrono = "^0.4"
lazy-regex = "3"
log = "^0.4"
remotefs = "^0.3"
ssh2-config = "^0.2"
ssh2 = "^0.9"
[dev-dependencies]
env_logger = "^0.11"
pretty_assertions = "^1"
rand = "^0.8.4"
serial_test = "^3"
tempfile = "^3"
[features]
default = ["find"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
ssh2-vendored = ["ssh2/vendored-openssl"]
# tests
github-actions = []
with-containers = []
[target."cfg(target_os = \"windows\")"]
[target."cfg(target_os = \"windows\")".dependencies]
path-slash = "^0.2.1"