forked from bolcom/libunftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (57 loc) · 1.95 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
54
55
56
57
58
59
60
61
[package]
name = "libunftp"
version = "0.18.0" # remember to update html_root_url
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
"Hannes de Jager <[email protected]>",
"Koen Wilde <[email protected]>",
"Maarten Dirkse <[email protected]>",
"Steven Meunier <[email protected]>",
"Rob klein Gunnewiek <[email protected]>",
]
description = "Extensible, async, cloud orientated FTP(S) server library."
documentation = "https://docs.rs/libunftp/"
repository = "https://github.com/bolcom/libunftp"
license = "Apache-2.0"
readme = "README.md"
keywords = ["ftp", "ftps"]
categories = ["network-programming"]
edition = "2018"
[workspace]
members = [
"crates/unftp-auth-jsonfile",
"crates/unftp-auth-pam",
"crates/unftp-auth-rest",
"crates/unftp-sbe-fs",
"crates/unftp-sbe-gcs"
]
[dependencies]
async-trait = "0.1.50"
bitflags = "1.2.1"
bytes = "1.0.1"
chrono = { version = "0.4.19", default-features = false, features = ["std"] }
derive_more = { version = "0.99.16", features = ["display"] }
futures = { version = "0.3.15", default-features = false, features = ["std"] }
getrandom = "0.2"
lazy_static = "1.4.0"
md-5 = "0.9.1"
moka = "0.5.0"
prometheus = { version = "0.12.0", default-features = false }
proxy-protocol = "0.3.0"
rustls = "0.19.1"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-stdlog = "4.1.0"
thiserror = "1.0.26"
tokio = { version = "1.8.1", features = ["rt", "net", "sync", "io-util", "time"] }
tokio-stream = "0.1.7"
tokio-rustls = { version = "0.22.0" }
tokio-util = { version = "0.6.7", features = ["codec"] }
tracing = { version = "0.1.26", default-features = false }
tracing-attributes = "0.1.15"
uuid = { version = "0.8.2", features = ["v4"] }
x509-parser = "0.9.2"
[dev-dependencies]
pretty_assertions = "0.7.2"
tokio = { version = "1.8.1", features = ["macros", "rt-multi-thread"]}
unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs"}