mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-20 08:01:46 +03:00
f6ec80d8ce
This provides a well defined interface for interacting with Stacks. It is implemented for gitbutler_branch::Branch, and it is specifically meant to operate on and update the `heads` field of Branch This facilitates creating, updating, removing, pushing and listing of "stacked branches" within the Stack (formerly the virtual branch).
20 lines
504 B
TOML
20 lines
504 B
TOML
[package]
|
|
name = "gitbutler-stack"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
itertools = "0.13"
|
|
serde = { workspace = true, features = ["std"] }
|
|
git2.workspace = true
|
|
gix.workspace = true
|
|
gitbutler-command-context.workspace = true
|
|
gitbutler-branch.workspace = true
|
|
gitbutler-patch-reference.workspace = true
|
|
gitbutler-reference.workspace = true
|
|
gitbutler-repo.workspace = true
|
|
gitbutler-commit.workspace = true
|