Adding upstream version 0.6.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4de83856e9
commit
5b48f7aed6
21 changed files with 5187 additions and 0 deletions
91
Cargo.toml
Normal file
91
Cargo.toml
Normal file
|
@ -0,0 +1,91 @@
|
|||
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
||||
#
|
||||
# When uploading crates to the registry Cargo will automatically
|
||||
# "normalize" Cargo.toml files for maximal compatibility
|
||||
# with all versions of Cargo and also rewrite `path` dependencies
|
||||
# to registry (e.g., crates.io) dependencies.
|
||||
#
|
||||
# If you are reading this file be aware that the original Cargo.toml
|
||||
# will likely look very different (and much more reasonable).
|
||||
# See Cargo.toml.orig for the original contents.
|
||||
|
||||
[package]
|
||||
edition = "2021"
|
||||
name = "git-graph"
|
||||
version = "0.6.0"
|
||||
authors = ["Martin Lange <martin_lange_@gmx.net>"]
|
||||
description = "Command line tool to show clear git graphs arranged for your branching model"
|
||||
readme = "README.md"
|
||||
keywords = [
|
||||
"git",
|
||||
"graph",
|
||||
]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/mlange-42/git-graph.git"
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
debug = 0
|
||||
debug-assertions = false
|
||||
overflow-checks = false
|
||||
|
||||
[dependencies.atty]
|
||||
version = "0.2"
|
||||
|
||||
[dependencies.chrono]
|
||||
version = "0.4"
|
||||
optional = false
|
||||
|
||||
[dependencies.clap]
|
||||
version = "4.0"
|
||||
features = ["cargo"]
|
||||
optional = false
|
||||
|
||||
[dependencies.crossterm]
|
||||
version = "0.25"
|
||||
optional = false
|
||||
|
||||
[dependencies.git2]
|
||||
version = "0.15"
|
||||
optional = false
|
||||
default-features = false
|
||||
|
||||
[dependencies.itertools]
|
||||
version = "0.10"
|
||||
|
||||
[dependencies.lazy_static]
|
||||
version = "1.4"
|
||||
|
||||
[dependencies.platform-dirs]
|
||||
version = "0.3"
|
||||
|
||||
[dependencies.regex]
|
||||
version = "1.7"
|
||||
features = ["std"]
|
||||
optional = false
|
||||
default-features = false
|
||||
|
||||
[dependencies.serde]
|
||||
version = "1.0"
|
||||
|
||||
[dependencies.serde_derive]
|
||||
version = "1.0"
|
||||
optional = false
|
||||
default-features = false
|
||||
|
||||
[dependencies.svg]
|
||||
version = "0.12"
|
||||
|
||||
[dependencies.textwrap]
|
||||
version = "0.16"
|
||||
features = ["unicode-width"]
|
||||
optional = false
|
||||
default-features = false
|
||||
|
||||
[dependencies.toml]
|
||||
version = "0.5"
|
||||
|
||||
[dependencies.yansi]
|
||||
version = "0.5"
|
Loading…
Add table
Add a link
Reference in a new issue