mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-26 12:35:14 +03:00
version bump
This commit is contained in:
parent
4379a77e0d
commit
cdbed764ed
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -29,7 +29,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
||||
|
||||
[[package]]
|
||||
name = "asyncgit"
|
||||
version = "0.2.6"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"crossbeam-channel",
|
||||
"git2",
|
||||
@ -302,7 +302,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "gitui"
|
||||
version = "0.2.6"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"asyncgit",
|
||||
"backtrace",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "gitui"
|
||||
version = "0.2.6"
|
||||
version = "0.3.0"
|
||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||
description = "blazing fast terminal-ui for git"
|
||||
edition = "2018"
|
||||
@ -19,6 +19,8 @@ keywords = [
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
scopetime = { path = "./scopetime", version = "0.1" }
|
||||
asyncgit = { path = "./asyncgit", version = "0.3" }
|
||||
crossterm = "0.17"
|
||||
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
|
||||
itertools = "0.9"
|
||||
@ -32,8 +34,6 @@ bitflags = "1.2"
|
||||
chrono = "0.4"
|
||||
backtrace = { version = "0.3" }
|
||||
ron = "0.5.1"
|
||||
scopetime = { path = "./scopetime", version = "0.1" }
|
||||
asyncgit = { path = "./asyncgit", version = "0.2" }
|
||||
serde = "1.0.110"
|
||||
|
||||
[features]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "asyncgit"
|
||||
version = "0.2.6"
|
||||
version = "0.3.0"
|
||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "allow using git2 in a asynchronous context"
|
||||
|
Loading…
Reference in New Issue
Block a user