[package] name = "rshell" version = "0.1.0" authors = ["ZhenyuanLua "] edition = "2018" license = "MIT OR Apache-2.0" description = "A remote login system" readme = "README.md" homepage = "https://github.com/zhenyuanlau/remote-login" repository = "https://github.com/zhenyuanlau/remote-login" keywords = ["cli", "demo"] categories = ["command-line-utilities"] default-run = "rshell" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "server" path = "src/server.rs" [[bin]] name = "client" path = "src/client.rs" [dependencies] nix = "0.15.0" structopt = "0.2.10" libc = "0.2.66" tempfile = "3.1.0"