From d64f0720f9952bfba62813537b5c0d05f61462be Mon Sep 17 00:00:00 2001 From: Robin Guignard-Perret Date: Fri, 20 Dec 2019 02:49:33 +0100 Subject: [PATCH] ADD reference to main cmd_lib repo --- Cargo.lock | 6 +++--- Cargo.toml | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 17941d7..f87ac4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,7 +54,7 @@ dependencies = [ [[package]] name = "cmd_lib" version = "0.7.8" -source = "git+https://github.com/yxdunc/rust_cmd_lib?rev=6cf978b546b6a83db437130ab489f2ae9f7edbb5#6cf978b546b6a83db437130ab489f2ae9f7edbb5" +source = "git+https://github.com/rust-shell-script/rust_cmd_lib?rev=9f9cba4b36cdff5f7d7495d998923f1b378cb9c2#9f9cba4b36cdff5f7d7495d998923f1b378cb9c2" [[package]] name = "either" @@ -94,7 +94,7 @@ dependencies = [ name = "lipl" version = "0.1.0" dependencies = [ - "cmd_lib 0.7.8 (git+https://github.com/yxdunc/rust_cmd_lib?rev=6cf978b546b6a83db437130ab489f2ae9f7edbb5)", + "cmd_lib 0.7.8 (git+https://github.com/rust-shell-script/rust_cmd_lib?rev=9f9cba4b36cdff5f7d7495d998923f1b378cb9c2)", "linreg 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "termion 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -278,7 +278,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum cassowary 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" "checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" "checksum clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9" -"checksum cmd_lib 0.7.8 (git+https://github.com/yxdunc/rust_cmd_lib?rev=6cf978b546b6a83db437130ab489f2ae9f7edbb5)" = "" +"checksum cmd_lib 0.7.8 (git+https://github.com/rust-shell-script/rust_cmd_lib?rev=9f9cba4b36cdff5f7d7495d998923f1b378cb9c2)" = "" "checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" "checksum heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205" "checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" diff --git a/Cargo.toml b/Cargo.toml index 5b7d6b0..8c65f62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,15 @@ name = "lipl" version = "0.1.0" authors = ["robin "] edition = "2018" +license = "MIT" +homepage = "https://github.com/yxdunc/lipl" +repository = "https://github.com/yxdunc/lipl" +description = "A command line tool to analyse the output over time of custom shell commands." +keywords = ["tui", "plotting", "unix", "cli", "watch"] [dependencies] structopt = "0.3" tui = "0.6.2" termion = "1.5.3" linreg = "0.1.3" -cmd_lib = { git = "https://github.com/yxdunc/rust_cmd_lib", rev = "6cf978b546b6a83db437130ab489f2ae9f7edbb5" } +cmd_lib = { git = "https://github.com/rust-shell-script/rust_cmd_lib", rev = "9f9cba4b36cdff5f7d7495d998923f1b378cb9c2" }