prepare new publish

This commit is contained in:
Stephan Dilly 2020-03-25 15:42:41 +01:00
parent d52308ea0a
commit 3ccd6dd07a
3 changed files with 7 additions and 7 deletions

4
Cargo.lock generated
View File

@ -20,7 +20,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "asyncgit"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"crossbeam-channel",
"git2",
@ -285,7 +285,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"asyncgit",
"crossbeam-channel",

View File

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.1.0"
version = "0.1.1"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
edition = "2018"
@ -18,8 +18,8 @@ log = "0.4"
simplelog = "0.7"
dirs = "2.0"
crossbeam-channel = "0.4"
scopetime = { path = "./scopetime", version="0.1"}
asyncgit = { path = "./asyncgit", version="0.1"}
scopetime = { path = "./scopetime", version = "0.1" }
asyncgit = { path = "./asyncgit", version = "0.1" }
[features]
default=[]

View File

@ -1,6 +1,6 @@
[package]
name = "asyncgit"
version = "0.1.0"
version = "0.1.1"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
description = "allow using git2 in a asynchronous context"
@ -14,7 +14,7 @@ git2 = "0.10"
rayon-core = "1.7"
crossbeam-channel = "0.4"
log = "0.4"
scopetime = { path = "../scopetime", version="0.1" }
scopetime = { path = "../scopetime", version = "0.1" }
[dev-dependencies]
tempfile = "3.1"