[package] authors = ["Christian Visintin "] categories = ["network-programming"] description = "a client library to work with all file transfer protocols" documentation = "https://docs.rs/remotefs" edition = "2021" include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] keywords = [ "scp-client", "sftp-client", "ftp-client", "s3-client", "kube-client", ] license = "MIT" name = "remotefs" readme = "README.md" repository = "https://github.com/remotefs-rs/remotefs-rs" version = "0.3.1" [dependencies] log = "^0.4" thiserror = "^1" wildmatch = { version = "^2", optional = true } [dev-dependencies] env_logger = "^0.11" pretty_assertions = "^1" tempfile = "^3" [features] default = ["find"] # misc find = ["wildmatch"] no-log = ["log/max_level_off"] # tests github-actions = [] with-containers = []