# 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 = "suppaftp" version = "6.0.4" authors = [ "Christian Visintin ", "Matt McCoy ", ] build = false include = [ "src/**/*", "../LICENSE-APACHE", "../LICENSE-MIT", "../README.md", "../CHANGELOG.md", ] autobins = false autoexamples = false autotests = false autobenches = false description = "A super FTP/FTPS client library for Rust" documentation = "https://docs.rs/suppaftp/" readme = "README.md" keywords = [ "ftp", "ftps", "network-protocol", "async", "ftp-client", ] categories = [ "asynchronous", "network-programming", ] license = "MIT OR Apache-2.0" repository = "https://github.com/veeso/suppaftp" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "suppaftp" path = "src/lib.rs" [dependencies.async-native-tls-crate] version = "^0.5" optional = true package = "async-native-tls" [dependencies.async-std] version = "^1.10" optional = true [dependencies.async-tls] version = "^0.13" optional = true [dependencies.async-trait] version = "0.1.64" optional = true [dependencies.chrono] version = "^0.4" features = ["clock"] default-features = false [dependencies.futures-lite] version = "2.0.0" [dependencies.lazy-regex] version = "^3" [dependencies.log] version = "^0.4" [dependencies.native-tls-crate] version = "^0.2" optional = true package = "native-tls" [dependencies.pin-project] version = "^1" optional = true [dependencies.rustls-crate] version = "^0.23" optional = true package = "rustls" [dependencies.thiserror] version = "^1" [dev-dependencies.async-attributes] version = "1.1.2" [dev-dependencies.env_logger] version = "^0.11" [dev-dependencies.pretty_assertions] version = "^1.0.0" [dev-dependencies.rand] version = "^0.8.4" [dev-dependencies.serial_test] version = "^3.0" [dev-dependencies.webpki-roots] version = "0.26" [features] async = [ "async-std", "async-trait", "pin-project", ] async-default-tls = ["async-native-tls"] async-native-tls = [ "async-native-tls-crate", "async-secure", ] async-native-tls-vendored = [ "async-native-tls", "async-native-tls-crate/vendored", ] async-rustls = [ "async-tls", "async-secure", ] async-secure = ["async"] default = [] default-tls = ["native-tls"] deprecated = [] native-tls = [ "native-tls-crate", "secure", ] native-tls-vendored = [ "native-tls", "native-tls-crate/vendored", ] no-log = ["log/max_level_off"] rustls = [ "rustls-crate", "secure", ] secure = [] with-containers = []