# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "unftp" version = "0.14.7" authors = [ "Agoston Horvath ", "Dávid Kosztka ", "Hannes de Jager ", "Koen Wilde ", "Maarten Dirkse ", "Steven Meunier ", "Rob klein Gunnewiek ", ] description = "When you need to FTP, but don't want to. An async, cloud orientated FTP(S) server built on libunftp" homepage = "https://github.com/bolcom/unFTP" documentation = "https://github.com/bolcom/unFTP" readme = "README.md" keywords = [ "ftp", "ftps", "server", "gcs", ] categories = ["network-programming"] license = "Apache-2.0" repository = "https://github.com/bolcom/unFTP" [package.metadata.arch] arch = ["x86_64"] [package.metadata.deb] assets = [ [ "target/x86_64-unknown-linux-gnu/release/unftp", "usr/bin/", "755", ], [ "LICENSE", "usr/share/doc/unftp/", "644", ], [ "README.md", "usr/share/doc/unftp/README", "644", ], ] extended-description = """ unFTP (unftp) is a FTP(S) server written in Rust and built on top of libunftp and the Tokio asynchronous run-time. It is unlike your normal FTP server in that it provides: - Configurable Authentication (e.g. Anonymous, PAM or a JSON file). - Configurable storage back-ends (e.g. GCS or filesystem) - An HTTP server with health endpoints for use for example in Kubernetes for readiness and liveness probes. - Integration with Prometheus for monitoring. - A proxy protocol mode for use behind proxies like HA Proxy and Nginx. With unFTP, you can present RFC compliant FTP(S) to the outside world while freeing yourself to use modern APIs and techniques on the inside of your perimeter. """ features = ["all_extentions"] section = "net" [profile.release] lto = "fat" codegen-units = 1 debug = 0 [dependencies.async-trait] version = "0.1.80" [dependencies.base64] version = "0.22.1" [dependencies.clap] version = "3.2.25" features = [ "derive", "env", ] [dependencies.console-subscriber] version = "0.3.0" optional = true [dependencies.flate2] version = "1.0.30" [dependencies.futures] version = "0.3.30" [dependencies.http] version = "0.2.12" [dependencies.hyper] version = "0.14.29" features = [ "server", "http1", ] [dependencies.hyper-rustls] version = "0.23.2" [dependencies.lazy_static] version = "1.4.0" [dependencies.libunftp] version = "0.20.1" [dependencies.prometheus] version = "0.13.4" features = ["process"] [dependencies.serde] version = "1.0.203" features = ["derive"] [dependencies.serde_json] version = "1.0.117" [dependencies.slog] version = "2.7.0" features = [ "max_level_trace", "release_max_level_info", ] [dependencies.slog-async] version = "2.8.0" [dependencies.slog-redis] version = "0.1.2" [dependencies.slog-term] version = "2.9.1" [dependencies.strum] version = "0.26.2" features = ["derive"] [dependencies.strum_macros] version = "0.26.2" [dependencies.thiserror] version = "1.0.61" [dependencies.tokio] version = "1.38.0" features = [ "signal", "rt-multi-thread", ] [dependencies.unftp-auth-jsonfile] version = "0.3.4" optional = true [dependencies.unftp-auth-rest] version = "0.2.6" optional = true [dependencies.unftp-sbe-fs] version = "0.2.5" [dependencies.unftp-sbe-gcs] version = "0.2.6" optional = true [dependencies.unftp-sbe-restrict] version = "0.1.2" [dependencies.unftp-sbe-rooter] version = "0.2.1" [dependencies.url] version = "2.5.2" [dev-dependencies.pretty_assertions] version = "1.4.0" [build-dependencies.built] version = "0.5.2" features = [ "git2", "chrono", ] [features] all_extentions = [ "pam_auth", "rest_auth", "jsonfile_auth", "cloud_storage", ] cloud_storage = ["unftp-sbe-gcs"] default = [ "rest_auth", "cloud_storage", "jsonfile_auth", ] docker = ["musl"] gnu = ["all_extentions"] jsonfile_auth = ["unftp-auth-jsonfile"] musl = [ "rest_auth", "cloud_storage", "jsonfile_auth", ] pam_auth = ["unftp-auth-pam"] rest_auth = ["unftp-auth-rest"] tokio_console = [ "console-subscriber", "tokio/tracing", ] [target."cfg(unix)".dependencies.unftp-auth-pam] version = "0.2.5" optional = true