diff --git a/Cargo.toml b/Cargo.toml index 408e0033..1acae1b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,10 @@ version = "0.1.0" authors = ["Stephan Dilly "] 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] diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 53aaa826..05ee49fc 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -3,6 +3,10 @@ name = "asyncgit" version = "0.1.0" authors = ["Stephan Dilly "] edition = "2018" +description = "allow using git2 in a asynchronous context" +homepage = "https://gitui.org" +readme = "README.md" +categories = ["concurrency","asynchronous"] [dependencies] git2 = "0.10" diff --git a/asyncgit/README.md b/asyncgit/README.md new file mode 100644 index 00000000..7a974e0c --- /dev/null +++ b/asyncgit/README.md @@ -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. \ No newline at end of file diff --git a/scopetime/Cargo.toml b/scopetime/Cargo.toml index 6d63dd0e..a60cb5cd 100644 --- a/scopetime/Cargo.toml +++ b/scopetime/Cargo.toml @@ -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"