[package] authors = ["Christian Visintin"] categories = ["command-line-utilities"] description = "termscp is a feature rich terminal file transfer and explorer with support for SCP/SFTP/FTP" documentation = "https://docs.rs/termscp" edition = "2018" homepage = "https://github.com/veeso/termscp" include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] keywords = ["scp-client", "sftp-client", "ftp-client", "winscp", "command-line-utility"] license = "MIT" name = "termscp" readme = "README.md" repository = "https://github.com/veeso/termscp" version = "0.5.0" [package.metadata.rpm] package = "termscp" [package.metadata.rpm.cargo] buildflags = ["--release"] [package.metadata.rpm.targets] termscp = { path = "/usr/bin/termscp" } [[bin]] name = "termscp" path = "src/main.rs" [dependencies] bitflags = "1.2.1" bytesize = "1.0.1" chrono = "0.4.19" content_inspector = "0.2.4" crossterm = "0.19.0" dirs = "3.0.1" edit = "0.1.3" getopts = "0.2.21" hostname = "0.3.1" lazy_static = "1.4.0" magic-crypt = "3.1.7" rand = "0.8.3" regex = "1.5.3" rpassword = "5.0.1" ssh2 = "0.9.0" tempfile = "3.1.0" textwrap = "0.13.4" thiserror = "^1.0.0" toml = "0.5.8" tuirealm = { version = "0.2.2", features = [ "with-components" ] } whoami = "1.1.1" wildmatch = "2.0.0" [dev-dependencies] pretty_assertions = "0.7.2" [dependencies.ftp4] features = ["secure"] version = "^4.0.2" [dependencies.serde] features = ["derive"] version = "^1.0.0" [dependencies.ureq] features = ["json"] version = "2.1.0" [features] githubActions = [] [target."cfg(any(target_os = \"unix\", target_os = \"macos\", target_os = \"linux\"))"] [target."cfg(any(target_os = \"unix\", target_os = \"macos\", target_os = \"linux\"))".dependencies] users = "0.11.0" [target."cfg(any(target_os = \"windows\", target_os = \"macos\"))"] [target."cfg(any(target_os = \"windows\", target_os = \"macos\"))".dependencies] keyring = "0.10.1" [target."cfg(target_os = \"windows\")"] [target."cfg(target_os = \"windows\")".dependencies] path-slash = "0.1.4"