aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock46
-rw-r--r--Cargo.toml4
-rw-r--r--src/cmd/play.rs2
-rw-r--r--src/cmd/record.rs2
-rw-r--r--src/cmd/server.rs2
-rw-r--r--src/cmd/watch.rs4
6 files changed, 30 insertions, 30 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2c4165d..edf89c4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -824,29 +824,6 @@ 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.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "env_logger 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
- "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
- "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
- "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "ratelimit_meter 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "snafu 0.5.0 (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)",
- "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
- "tokio-tls 0.2.1 (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"
@@ -911,6 +888,29 @@ dependencies = [
]
[[package]]
+name = "teleterm"
+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.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "env_logger 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
+ "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
+ "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)",
+ "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)",
+ "ratelimit_meter 5.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
+ "snafu 0.5.0 (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)",
+ "tokio-signal 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
+ "tokio-tls 0.2.1 (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 = "tempfile"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index f4f9316..499bef9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "shellshare"
+name = "teleterm"
version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"
@@ -24,5 +24,5 @@ twoway = "0.2"
uuid = { version = "0.7", features = ["v4"] }
[[bin]]
-name = "shsh"
+name = "tt"
path = "src/main.rs"
diff --git a/src/cmd/play.rs b/src/cmd/play.rs
index 8105ce0..94826bd 100644
--- a/src/cmd/play.rs
+++ b/src/cmd/play.rs
@@ -27,7 +27,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("Play shellshare streams").arg(
+ app.about("Play recorded terminal sessions").arg(
clap::Arg::with_name("filename")
.long("filename")
.takes_value(true)
diff --git a/src/cmd/record.rs b/src/cmd/record.rs
index 045a54e..69b8009 100644
--- a/src/cmd/record.rs
+++ b/src/cmd/record.rs
@@ -27,7 +27,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("Record shellshare streams")
+ app.about("Record a terminal session to a file")
.arg(
clap::Arg::with_name("filename")
.long("filename")
diff --git a/src/cmd/server.rs b/src/cmd/server.rs
index 0633a77..3c40e4f 100644
--- a/src/cmd/server.rs
+++ b/src/cmd/server.rs
@@ -59,7 +59,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 shellshare server")
+ app.about("Run a teleterm server")
.arg(
clap::Arg::with_name("address")
.long("address")
diff --git a/src/cmd/watch.rs b/src/cmd/watch.rs
index 840f494..3dde126 100644
--- a/src/cmd/watch.rs
+++ b/src/cmd/watch.rs
@@ -43,7 +43,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 shellshare streams")
+ app.about("Watch teleterm streams")
.arg(
clap::Arg::with_name("username")
.long("username")
@@ -486,7 +486,7 @@ impl<S: tokio::io::AsyncRead + tokio::io::AsyncWrite + Send + 'static>
crossterm::terminal()
.clear(crossterm::ClearType::All)
.context(WriteTerminalCrossterm)?;
- println!("welcome to shellshare\r");
+ println!("welcome to teleterm\r");
println!("available sessions:\r");
println!("\r");
println!(