termscp/Cargo.toml

59 lines
1.6 KiB
TOML
Raw Normal View History

2020-11-07 17:48:41 +01:00
[package]
name = "termscp"
2020-12-13 10:27:21 +01:00
version = "0.2.0"
2020-11-07 17:48:41 +01:00
authors = ["Christian Visintin"]
edition = "2018"
license = "GPL-3.0"
keywords = ["scp-client", "sftp-client", "ftp-client", "winscp", "command-line-utility"]
categories = ["command-line-utilities"]
description = "TermSCP is a SCP/SFTP/FTPS client for command line with an integrated UI to explore the remote file system. Basically WinSCP on a terminal."
2020-12-18 14:47:48 +01:00
homepage = "https://github.com/ChristianVisintin/termscp"
repository = "https://github.com/ChristianVisintin/termscp"
2020-11-07 17:48:41 +01:00
documentation = "https://docs.rs/termscp"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-12-15 11:13:29 +01:00
bytesize = "1.0.1"
chrono = "0.4.19"
2020-11-07 17:48:41 +01:00
crossterm = "0.18.2"
2020-12-15 11:13:29 +01:00
dirs = "3.0.1"
2020-12-10 11:26:52 +01:00
ftp4 = { version = "^4.0.1", features = ["secure"] }
2020-11-07 17:48:41 +01:00
getopts = "0.2.21"
2020-12-15 11:13:29 +01:00
hostname = "0.3.1"
lazy_static = "1.4.0"
2020-12-16 15:46:46 +01:00
magic-crypt = "3.1.6"
rand = "0.7.3"
2020-12-15 11:13:29 +01:00
regex = "1.4.2"
rpassword = "5.0.0"
serde = { version = "1.0.118", features = ["derive"] }
2020-11-30 10:35:51 +01:00
ssh2 = "0.9.0"
2020-12-15 11:13:29 +01:00
textwrap = "0.13.0"
toml = "0.5.7"
2020-11-30 10:35:51 +01:00
tui = { version = "0.13.0", features = ["crossterm"], default-features = false }
2020-11-24 15:13:36 +01:00
unicode-width = "0.1.7"
2020-12-15 11:13:29 +01:00
whoami = "1.0.0"
2020-11-07 17:48:41 +01:00
[target.'cfg(any(target_os = "unix", target_os = "macos", target_os = "linux"))'.dependencies]
2020-11-30 21:02:11 +01:00
users = "0.11.0"
2020-11-08 21:39:01 +01:00
[dev-dependencies]
tempfile = "3"
2020-12-03 14:45:05 +01:00
#[patch.crates-io]
#ftp = { git = "https://github.com/ChristianVisintin/rust-ftp" }
2020-12-01 14:38:15 +01:00
2020-11-07 17:48:41 +01:00
[[bin]]
name = "termscp"
path = "src/main.rs"
2020-12-06 12:32:53 +01:00
[package.metadata.rpm]
package = "termscp"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
termscp = { path = "/usr/bin/termscp" }