aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock32
-rw-r--r--Cargo.toml6
-rw-r--r--src/cmd/server.rs2
-rw-r--r--src/cmd/watch.rs2
4 files changed, 23 insertions, 19 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 923217c..85dd517 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -576,6 +576,22 @@ version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
+name = "shellshare"
+version = "0.1.0"
+dependencies = [
+ "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
+ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "crossterm 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
+ "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
+ "snafu 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tokio-pty-process 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "twoway 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "signal-hook"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -645,22 +661,6 @@ dependencies = [
]
[[package]]
-name = "termcast"
-version = "0.1.0"
-dependencies = [
- "bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
- "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "crossterm 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
- "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
- "snafu 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
- "tokio 0.1.22 (registry+https://github.com/rust-lang/crates.io-index)",
- "tokio-pty-process 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "twoway 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 5a709a3..d03861e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "termcast"
+name = "shellshare"
version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"
@@ -15,3 +15,7 @@ tokio = "0.1"
tokio-pty-process = "0.4"
twoway = "0.2"
uuid = { version = "0.7", features = ["v4"] }
+
+[[bin]]
+name = "shsh"
+path = "src/main.rs"
diff --git a/src/cmd/server.rs b/src/cmd/server.rs
index c276d82..d53438b 100644
--- a/src/cmd/server.rs
+++ b/src/cmd/server.rs
@@ -14,7 +14,7 @@ pub enum Error {
pub type Result<T> = std::result::Result<T, Error>;
pub fn cmd<'a, 'b>(app: clap::App<'a, 'b>) -> clap::App<'a, 'b> {
- app.about("Run a termcast server").arg(
+ app.about("Run a shellshare server").arg(
clap::Arg::with_name("address")
.long("address")
.takes_value(true),
diff --git a/src/cmd/watch.rs b/src/cmd/watch.rs
index 749638c..dae6f69 100644
--- a/src/cmd/watch.rs
+++ b/src/cmd/watch.rs
@@ -30,7 +30,7 @@ pub enum Error {
pub type Result<T> = std::result::Result<T, Error>;
pub fn cmd<'a, 'b>(app: clap::App<'a, 'b>) -> clap::App<'a, 'b> {
- app.about("Watch termcast streams")
+ app.about("Watch shellshare streams")
.arg(
clap::Arg::with_name("address")
.long("address")