mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-24 10:02:26 +03:00
9f6c01c5ab
Currently tests rely to be run globally so `branch-actions` can set the required feature flags. Now more crates that need it will set it so that their tests can be run individually.
50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
[package]
|
|
name = "gitbutler-repo"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
git2.workspace = true
|
|
gix = { workspace = true, features = ["status", "tree-editor"] }
|
|
anyhow = "1.0.86"
|
|
bstr.workspace = true
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"rt",
|
|
"macros",
|
|
"sync",
|
|
] }
|
|
gitbutler-git.workspace = true
|
|
tracing.workspace = true
|
|
tempfile = "3.10"
|
|
serde = { workspace = true, features = ["std"] }
|
|
log = "^0.4"
|
|
thiserror.workspace = true
|
|
resolve-path = "0.1.0"
|
|
ssh2 = { version = "0.9.4", features = ["vendored-openssl"] }
|
|
gitbutler-command-context.workspace = true
|
|
gitbutler-config.workspace = true
|
|
gitbutler-project.workspace = true
|
|
gitbutler-branch.workspace = true
|
|
gitbutler-reference.workspace = true
|
|
gitbutler-error.workspace = true
|
|
gitbutler-id.workspace = true
|
|
gitbutler-time.workspace = true
|
|
gitbutler-commit.workspace = true
|
|
gitbutler-url.workspace = true
|
|
gitbutler-cherry-pick.workspace = true
|
|
uuid.workspace = true
|
|
itertools = "0.13"
|
|
|
|
[[test]]
|
|
name = "repo"
|
|
path = "tests/mod.rs"
|
|
|
|
[dev-dependencies]
|
|
gitbutler-testsupport.workspace = true
|
|
gitbutler-user.workspace = true
|
|
gitbutler-git = { workspace = true, features = ["test-askpass-path"] }
|
|
serde_json = { version = "1.0", features = ["std", "arbitrary_precision"] }
|