mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
prepare new publish
This commit is contained in:
parent
d52308ea0a
commit
3ccd6dd07a
3 changed files with 7 additions and 7 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -20,7 +20,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"git2",
|
"git2",
|
||||||
|
|
@ -285,7 +285,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"asyncgit",
|
"asyncgit",
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
description = "blazing fast terminal-ui for git"
|
description = "blazing fast terminal-ui for git"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
@ -18,8 +18,8 @@ log = "0.4"
|
||||||
simplelog = "0.7"
|
simplelog = "0.7"
|
||||||
dirs = "2.0"
|
dirs = "2.0"
|
||||||
crossbeam-channel = "0.4"
|
crossbeam-channel = "0.4"
|
||||||
scopetime = { path = "./scopetime", version="0.1"}
|
scopetime = { path = "./scopetime", version = "0.1" }
|
||||||
asyncgit = { path = "./asyncgit", version="0.1"}
|
asyncgit = { path = "./asyncgit", version = "0.1" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default=[]
|
default=[]
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "allow using git2 in a asynchronous context"
|
description = "allow using git2 in a asynchronous context"
|
||||||
|
|
@ -14,7 +14,7 @@ git2 = "0.10"
|
||||||
rayon-core = "1.7"
|
rayon-core = "1.7"
|
||||||
crossbeam-channel = "0.4"
|
crossbeam-channel = "0.4"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
scopetime = { path = "../scopetime", version="0.1" }
|
scopetime = { path = "../scopetime", version = "0.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3.1"
|
tempfile = "3.1"
|
||||||
Loading…
Reference in a new issue