mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-20 08:01:46 +03:00
0c9c781bd5
This is more descriptive to what logic lives inside. Further, this allows for splitting up the just branch bits in a separate crate (which is currently in gitbutler-core)
27 lines
635 B
TOML
27 lines
635 B
TOML
[package]
|
|
name = "gitbutler-testsupport"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
doctest = false
|
|
test = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.86"
|
|
once_cell = "1.19"
|
|
git2.workspace = true
|
|
pretty_assertions = "1.4"
|
|
tempfile = "3.10.1"
|
|
keyring.workspace = true
|
|
serde_json = "1.0"
|
|
gitbutler-core = { path = "../gitbutler-core" }
|
|
gitbutler-virtual = { path = "../gitbutler-virtual" }
|
|
gitbutler-repo = { path = "../gitbutler-repo" }
|
|
gitbutler-branchstate = { path = "../gitbutler-branchstate" }
|
|
gitbutler-command-context.workspace = true
|
|
gitbutler-project.workspace = true
|
|
gitbutler-user.workspace = true
|