mirror of
https://github.com/extrawurst/gitui.git
synced 2024-12-25 10:02:48 +03:00
more crates publish prep
This commit is contained in:
parent
0f1d226251
commit
28934cfcd1
@ -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]
|
||||
|
@ -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
6
asyncgit/README.md
Normal 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.
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user