-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- libunftp 0.20.2 - unftp-auth-jsonfile v0.3.5 - unftp-auth-pam v0.2.6 - unftp-auth-rest v0.2.7 - unftp-sbe-fs v0.2.6 - unftp-sbe-gcs v0.2.7
- Loading branch information
Showing
19 changed files
with
128 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "libunftp" | ||
version = "0.20.1" # remember to update html_root_url | ||
version = "0.20.2" # remember to update html_root_url | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
"Dávid Kosztka <[email protected]>", | ||
|
@@ -37,37 +37,37 @@ missing_docs = "deny" | |
all = "deny" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
bitflags = "2.5.0" | ||
bytes = "1.6.0" | ||
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std"] } | ||
async-trait = "0.1.83" | ||
bitflags = "2.6.0" | ||
bytes = "1.9.0" | ||
chrono = { version = "0.4.39", default-features = false, features = ["clock", "std"] } | ||
derive_more = { version = "0.99.18", features = ["display"] } | ||
futures-util = { version = "0.3.30", default-features = false, features = ["alloc", "sink"] } | ||
futures-util = { version = "0.3.31", default-features = false, features = ["alloc", "sink"] } | ||
getrandom = "0.2.15" | ||
lazy_static = "1.4.0" | ||
lazy_static = "1.5.0" | ||
md-5 = "0.10.6" | ||
moka = { version = "0.12.7", default-features = false, features = ["sync"] } | ||
moka = { version = "0.12.8", default-features = false, features = ["sync"] } | ||
nix = { version = "0.29.0", default-features = false, features = ["fs"] } | ||
prometheus = { version = "0.13.4", default-features = false } | ||
proxy-protocol = "0.5.0" | ||
rustls = "0.23.10" | ||
rustls-pemfile = "2.1.2" | ||
rustls = "0.23.20" | ||
rustls-pemfile = "2.2.0" | ||
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] } | ||
slog-stdlog = "4.1.1" | ||
thiserror = "1.0.61" | ||
tokio = { version = "1.38.0", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] } | ||
tokio-rustls = "0.26.0" | ||
tokio-util = { version = "0.7.11", features = ["codec"] } | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
uuid = { version = "1.8.0", features = ["v4"] } | ||
thiserror = "1.0.69" | ||
tokio = { version = "1.42.0", features = ["macros", "rt", "net", "process", "sync", "io-util", "time"] } | ||
tokio-rustls = "0.26.1" | ||
tokio-util = { version = "0.7.13", features = ["codec"] } | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
uuid = { version = "1.11.0", features = ["v4"] } | ||
x509-parser = "0.16.0" | ||
dashmap = "5.5.3" | ||
libc = "0.2" | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "1.4.0" | ||
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] } | ||
pretty_assertions = "1.4.1" | ||
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] } | ||
unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs" } | ||
|
||
[lints] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unftp-auth-jsonfile" | ||
version = "0.3.4" | ||
version = "0.3.5" | ||
description = "An authentication back-end for libunftp that authenticates against credentials in JSON format" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
|
@@ -18,24 +18,24 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-j | |
readme = "README.md" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
async-trait = "0.1.83" | ||
base64 = "0.21.7" | ||
bytes = "1.6.0" | ||
ipnet = "2.9.0" | ||
bytes = "1.9.0" | ||
ipnet = "2.10.1" | ||
iprange = "0.6.7" | ||
libunftp = { version = "0.20.1", path = "../../" } | ||
libunftp = { version = "0.20.2", path = "../../" } | ||
ring = "0.16.20" | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
serde_json = "1.0.117" | ||
tokio = { version = "1.38.0", features = ["rt", "time"] } | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
serde = { version = "1.0.216", features = ["derive"] } | ||
serde_json = "1.0.133" | ||
tokio = { version = "1.42.0", features = ["rt", "time"] } | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
valid = "0.3.1" | ||
flate2 = "1.0.30" | ||
flate2 = "1.0.35" | ||
|
||
[dev-dependencies] | ||
pretty_env_logger = "0.5.0" | ||
tokio = { version = "1.38.0", features = ["macros"] } | ||
tokio = { version = "1.42.0", features = ["macros"] } | ||
unftp-sbe-fs = { version = "0.2.2", path = "../unftp-sbe-fs" } | ||
|
||
[lints] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unftp-auth-pam" | ||
version = "0.2.5" | ||
version = "0.2.6" | ||
description = "An authentication back-end for libunftp that authenticates using PAM" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
|
@@ -19,16 +19,16 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-auth-p | |
readme = "README.md" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
libunftp = { version = "0.20.1", path = "../../" } | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
async-trait = "0.1.83" | ||
libunftp = { version = "0.20.2", path = "../../" } | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
|
||
[target.'cfg(target_family = "unix")'.dependencies] | ||
pam-auth = { package = "pam", version = "0.7.0" } | ||
|
||
[dev-dependencies] | ||
tokio = { version = "1.38.0", features = ["macros"] } | ||
tokio = { version = "1.42.0", features = ["macros"] } | ||
|
||
[lints] | ||
workspace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unftp-auth-rest" | ||
version = "0.2.6" | ||
version = "0.2.7" | ||
description = "An authentication back-end for libunftp that consumes an HTTP API to authenticate" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
|
@@ -18,22 +18,22 @@ repository = "https://github.com/bolcom/libunftp/tree/hannes/crates/unftp-auth-r | |
readme = "README.md" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] } | ||
async-trait = "0.1.83" | ||
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] } | ||
hyper-rustls = "0.24.2" | ||
libunftp = { version = "0.20.1", path = "../../" } | ||
libunftp = { version = "0.20.2", path = "../../" } | ||
percent-encoding = "2.3.1" | ||
regex = "1.10.5" | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
serde_json = "1.0.117" | ||
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time"] } | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
regex = "1.11.1" | ||
serde = { version = "1.0.216", features = ["derive"] } | ||
serde_json = "1.0.133" | ||
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time"] } | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
|
||
|
||
[dev-dependencies] | ||
pretty_env_logger = "0.5.0" | ||
tokio = { version = "1.38.0", features = ["macros"] } | ||
tokio = { version = "1.42.0", features = ["macros"] } | ||
unftp-sbe-fs = { version = "0.2.2", path = "../unftp-sbe-fs" } | ||
|
||
[lints] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unftp-sbe-fs" | ||
version = "0.2.5" | ||
version = "0.2.6" | ||
description = "A storage back-end for libunftp, storing files on local disk" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
|
@@ -19,39 +19,39 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-fs | |
readme = "README.md" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
async-trait = "0.1.83" | ||
cfg-if = "1.0" | ||
cap-std = "3.1" | ||
futures = { version = "0.3.30", default-features = false, features = ["std"] } | ||
lazy_static = "1.4.0" | ||
libunftp = { version = "0.20.1", path = "../../" } | ||
cap-std = "3.4" | ||
futures = { version = "0.3.31", default-features = false, features = ["std"] } | ||
lazy_static = "1.5.0" | ||
libunftp = { version = "0.20.2", path = "../../" } | ||
path_abs = "0.5.1" | ||
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] } | ||
tokio-stream = "0.1.15" | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] } | ||
tokio-stream = "0.1.17" | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
|
||
[dev-dependencies] | ||
async_ftp = "6.0.0" | ||
async-trait = "0.1.80" | ||
chrono = "0.4.0" | ||
async-trait = "0.1.83" | ||
chrono = "0.4.39" | ||
more-asserts = "0.3.1" | ||
nix = { version = "0.29.0", default-features = false, features = ["user"] } | ||
pretty_assertions = "1.4.0" | ||
pretty_assertions = "1.4.1" | ||
pretty_env_logger = "0.5.0" | ||
regex = "1.10.5" | ||
regex = "1.11.1" | ||
rstest = "0.18.2" | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
serde_json = "1.0.117" | ||
serde = { version = "1.0.216", features = ["derive"] } | ||
serde_json = "1.0.133" | ||
slog-async = "2.8.0" | ||
slog-term = "2.9.1" | ||
tempfile = "3.10.1" | ||
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] } | ||
tracing-subscriber = "0.3.18" | ||
tempfile = "3.14.0" | ||
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] } | ||
tracing-subscriber = "0.3.19" | ||
getrandom = "0.2.15" | ||
|
||
[target.'cfg(target_os = "freebsd")'.dev-dependencies] | ||
capsicum = { version = "0.4.2", features = ["casper"] } | ||
capsicum = { version = "0.4.4", features = ["casper"] } | ||
capsicum-net = { version = "0.1.0", features = ["tokio"] } | ||
|
||
[lints] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "unftp-sbe-gcs" | ||
description = "A storage back-end for libunftp, storing files in Google Cloud Storage (GCS)" | ||
version = "0.2.6" | ||
version = "0.2.7" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
"Dávid Kosztka <[email protected]>", | ||
|
@@ -18,38 +18,38 @@ repository = "https://github.com/bolcom/libunftp/tree/master/crates/unftp-sbe-gc | |
readme = "README.md" | ||
|
||
[dependencies] | ||
async-trait = "0.1.80" | ||
async-trait = "0.1.83" | ||
base64 = "0.21.7" | ||
bytes = "1.6.0" | ||
chrono = { version = "0.4.38", default-features = false, features = ["std", "serde"] } | ||
futures = { version = "0.3.30", default-features = false, features = ["std"] } | ||
hyper = { version = "0.14.29", features = ["client", "runtime", "stream", "http1"] } | ||
bytes = "1.9.0" | ||
chrono = { version = "0.4.39", default-features = false, features = ["std", "serde"] } | ||
futures = { version = "0.3.31", default-features = false, features = ["std"] } | ||
hyper = { version = "0.14.31", features = ["client", "runtime", "stream", "http1"] } | ||
hyper-rustls = "0.24.2" | ||
libunftp = { version = "0.20.1", path = "../../" } | ||
libunftp = { version = "0.20.2", path = "../../" } | ||
mime = "0.3.17" | ||
percent-encoding = "2.3.1" | ||
serde = { version = "1.0.203", features = ["derive"] } | ||
serde_json = "1.0.117" | ||
time = "0.3.36" | ||
tokio = { version = "1.38.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] } | ||
tokio-stream = "0.1.15" | ||
tokio-util = { version = "0.7.11", features = ["codec", "compat"] } | ||
tracing = { version = "0.1.40", default-features = false } | ||
tracing-attributes = "0.1.27" | ||
serde = { version = "1.0.216", features = ["derive"] } | ||
serde_json = "1.0.133" | ||
time = "0.3.37" | ||
tokio = { version = "1.42.0", features = ["rt", "net", "sync", "io-util", "time", "fs"] } | ||
tokio-stream = "0.1.17" | ||
tokio-util = { version = "0.7.13", features = ["codec", "compat"] } | ||
tracing = { version = "0.1.41", default-features = false } | ||
tracing-attributes = "0.1.28" | ||
yup-oauth2 = "8.3.2" | ||
|
||
[dev-dependencies] | ||
async_ftp = "6.0.0" | ||
clap = { version = "3.2.25", features = ["env"] } | ||
lazy_static = "1.4.0" | ||
lazy_static = "1.5.0" | ||
more-asserts = "0.3.1" | ||
path_abs = "0.5.1" | ||
pretty_assertions = "1.4.0" | ||
pretty_assertions = "1.4.1" | ||
pretty_env_logger = "0.5.0" | ||
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] } | ||
slog-async = "2.8.0" | ||
slog-stdlog = "4.1.1" | ||
slog-term = "2.9.1" | ||
tempfile = "3.10.1" | ||
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] } | ||
tracing-subscriber = "0.3.18" | ||
tempfile = "3.14.0" | ||
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] } | ||
tracing-subscriber = "0.3.19" |
Oops, something went wrong.