more crates publish prep

This commit is contained in:
Stephan Dilly 2020-03-24 21:20:06 +01:00
parent 0f1d226251
commit 28934cfcd1
4 changed files with 13 additions and 1 deletions

View File

@ -4,9 +4,10 @@ version = "0.1.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
license = "MIT"
edition = "2018"
homepage = "https://gitui.org"
readme = "README.md"
edition = "2018"
categories = ["command-line-utilities"]
exclude = ["assets/*"]
[dependencies]

View File

@ -3,6 +3,10 @@ name = "asyncgit"
version = "0.1.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
description = "allow using git2 in a asynchronous context"
homepage = "https://gitui.org"
readme = "README.md"
categories = ["concurrency","asynchronous"]
[dependencies]
git2 = "0.10"

6
asyncgit/README.md Normal file
View File

@ -0,0 +1,6 @@
# asyncgit
*allow using git2 in a asynchronous context*
This crate is part of the [gitui](http://gitui.org) project.
It is used put long running [git2](https://github.com/rust-lang/git2-rs) calls onto a thread pool and use [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) to wait for a message to confirm the call finished.

View File

@ -7,6 +7,7 @@ description = "log runtime of arbitrary scope"
homepage = "https://gitui.org"
license = "MIT"
readme = "README.md"
categories = ["development-tools::profiling"]
[dependencies]
log = "0.4"