-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
53 lines (47 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
53
[package]
authors = ["Christian Visintin <[email protected]>"]
categories = ["network-programming"]
description = "remotefs SMB client library"
documentation = "https://docs.rs/remotefs-smb"
edition = "2021"
homepage = "https://veeso.github.io/remotefs-rs-smb/"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = ["remotefs", "smb-client", "smb", "smb2", "smb3"]
license = "MIT"
name = "remotefs-smb"
readme = "README.md"
repository = "https://github.com/remotefs-rs/remotefs-rs-smb"
version = "0.3.0"
[dependencies]
log = "^0.4.14"
remotefs = "^0.3.0"
[target."cfg(target_family = \"unix\")"]
[target."cfg(target_family = \"unix\")".dependencies]
libc = "^0.2"
pavao = "^0.2"
[target."cfg(target_family = \"windows\")"]
[target."cfg(target_family = \"windows\")".dependencies]
filetime = "^0.2"
windows-sys = { version = "^0.59", features = [
"Win32_NetworkManagement_WNet",
"Win32_Foundation",
] }
[dev-dependencies]
anyhow = "^1"
argh = "^0.1.7"
env_logger = "^0.11"
pretty_assertions = "^1.0.0"
rand = "^0.8.4"
rpassword = "7.2"
serial_test = "^3"
tempfile = "^3.2.0"
[features]
default = ["find"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
# tests
with-containers = []
[[example]]
name = "tree"
path = "examples/tree.rs"