From d1b7619077464180ba3d3f041dcf980886a645f5 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 1 Jul 2021 10:26:12 -0700 Subject: [PATCH] maint: fix ver; add example --- Cargo.toml | 4 +--- README.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 26dc63c..f9a14a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,9 @@ [package] name = "gwar" -version = "0.1.0" +version = "0.0.1" authors = ["Matthew Dillon "] edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] git2 = "0.13" serde = { version = "1.0", features = ["derive"] } diff --git a/README.md b/README.md index ac8fca9..990571c 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,24 @@ os install - having a single-file binary to make that happen seemed really nice, plus, i was looking for an excuse to play with rust a bit. you have been warned. +## example config + +```toml +[[workspace]] +path = "$HOME/projects" +ssh_key_path = "$HOME/.ssh/id_rsa" +origin.base_addr = "ssh://git@pingo.thermokar.st" +origin.name = "pingo" +repos = [ + "gpx-web-utils", + "gwar", + "zettel", +] +remotes = [ + { name = "thermokarst", base_addr = "ssh://git@github.com/thermokarst" }, +] +``` + ## building and testing locally ```bash