generated from veeso-dev/rust-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 1.12 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
[package]
name = "remotefs-webdav"
version = "0.2.0"
authors = ["Christian Visintin <[email protected]>"]
edition = "2021"
categories = ["network-programming"]
description = "a remotefs client implementation for WebDAV"
homepage = "https://github.com/veeso/remotefs-rs-webdav"
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
keywords = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/veeso/remotefs-rs-webdav"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytes = "1.5"
log = "0.4"
remotefs = "0.3"
rustydav = "0.1.3"
thiserror = "^1.0"
# webdav-xml deps
bytestring = "1.3.1"
http = "1"
httpdate = "1.0.3"
indexmap = "2.2.3"
mime = "0.3.17"
nonempty = "0.9.0"
quick-xml = "0.31.0"
time = { version = "0.3.34", features = ["parsing", "formatting"] }
[dev-dependencies]
env_logger = "^0.11.0"
pretty_assertions = "^1.0.0"
serial_test = "^3"
uuid = { version = "^1", features = ["v4"] }
[features]
default = ["find"]
# misc
find = ["remotefs/find"]
no-log = ["log/max_level_off"]
# tests
github-actions = []
with-containers = []