mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
e78ef9b115
This is very relevant for tree-diffing performance, and more could be tuned here like pack-cache sizes and object cache sizes.
29 lines
767 B
TOML
29 lines
767 B
TOML
[package]
|
|
name = "gitbutler-cli"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
publish = false
|
|
rust-version = "1.74"
|
|
|
|
[[bin]]
|
|
name = "gitbutler-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gitbutler-oplog.workspace = true
|
|
gitbutler-project.workspace = true
|
|
gitbutler-reference.workspace = true
|
|
gitbutler-branch-actions.workspace = true
|
|
gitbutler-command-context.workspace = true
|
|
gitbutler-branch.workspace = true
|
|
gitbutler-diff.workspace = true
|
|
gix = { workspace = true, features = ["max-performance", "tracing"] }
|
|
dirs-next = "2.0.0"
|
|
clap = { version = "4.5.13", features = ["derive", "env"] }
|
|
anyhow = "1.0.86"
|
|
chrono = "0.4.10"
|
|
tracing-forest = { version = "0.1.6" }
|
|
tracing-subscriber.workspace = true
|
|
tracing.workspace = true
|