maint: fix ver; add example
This commit is contained in:
parent
c8b470e015
commit
d1b7619077
2 changed files with 19 additions and 3 deletions
|
@ -1,11 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gwar"
|
name = "gwar"
|
||||||
version = "0.1.0"
|
version = "0.0.1"
|
||||||
authors = ["Matthew Dillon <matthewrdillon@gmail.com>"]
|
authors = ["Matthew Dillon <matthewrdillon@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
git2 = "0.13"
|
git2 = "0.13"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
|
18
README.md
18
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
|
nice, plus, i was looking for an excuse to play with rust a bit. you have been
|
||||||
warned.
|
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
|
## building and testing locally
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue