cleanup cargo deplyment

This commit is contained in:
Stephan Dilly 2021-04-11 23:06:39 +02:00
parent e5c1fa4ae9
commit b0b37a84e4
5 changed files with 4 additions and 6 deletions

View File

@ -4,7 +4,7 @@ version = "0.14.0"
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"
exclude = [".github/*",".vscode/*"] exclude = [".github/*",".vscode/*","assets/*"]
homepage = "https://github.com/extrawurst/gitui" homepage = "https://github.com/extrawurst/gitui"
repository = "https://github.com/extrawurst/gitui" repository = "https://github.com/extrawurst/gitui"
readme = "README.md" readme = "README.md"

View File

@ -21,7 +21,7 @@
<h5 align="center">Blazing fast terminal client for git written in Rust</h1> <h5 align="center">Blazing fast terminal client for git written in Rust</h1>
![](assets/demo.gif) ![](demo.gif)
# Features # Features

View File

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

@ -272,10 +272,8 @@ mod tests {
#[test] #[test]
fn test_load_vim_style_example() { fn test_load_vim_style_example() {
assert_eq!( assert_eq!(
KeyConfig::read_file( KeyConfig::read_file("vim_style_key_config.ron".into())
"assets/vim_style_key_config.ron".into() .is_ok(),
)
.is_ok(),
true true
); );
} }