aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-21 02:06:48 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-21 02:06:48 -0400
commit917f067dbcbe4f61fb919827bca93db74e628d45 (patch)
treee26c525ab64ced1f3489b1c78063055ee2ed3df9
parent067b6a61d856824a1d625b8bff729390df570a59 (diff)
downloadteleterm-917f067dbcbe4f61fb919827bca93db74e628d45.tar.gz
teleterm-917f067dbcbe4f61fb919827bca93db74e628d45.zip
metadata
-rw-r--r--Cargo.toml7
-rw-r--r--README.md1
-rw-r--r--src/main.rs3
3 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1ab6844..b04deea 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,6 +4,13 @@ version = "0.1.0"
authors = ["Jesse Luehrs <doy@tozt.net>"]
edition = "2018"
+description = "share your terminals!"
+repository = "https://git.tozt.net/teleterm"
+readme = "README.md"
+keywords = ["terminal", "streaming"]
+categories = ["command-line-utilities"]
+license = "MIT"
+
[dependencies]
bytes = "0.4"
clap = "2"
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..3a2c5da
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+# teleterm
diff --git a/src/main.rs b/src/main.rs
index 2497f07..9ded11d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,7 +1,10 @@
+// XXX this is broken with ale
+// #![warn(clippy::cargo)]
#![warn(clippy::pedantic)]
#![warn(clippy::nursery)]
#![allow(clippy::match_same_arms)]
#![allow(clippy::missing_const_for_fn)]
+#![allow(clippy::multiple_crate_versions)]
#![allow(clippy::similar_names)]
#![allow(clippy::single_match)]
#![allow(clippy::single_match_else)]