2024-07-08 01:27:17 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-repo"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
git2.workspace = true
|
2024-09-14 16:16:15 +03:00
|
|
|
gix = { workspace = true, features = ["status", "tree-editor"] }
|
2024-07-08 01:27:17 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-08-09 11:30:52 +03:00
|
|
|
bstr.workspace = true
|
2024-08-21 15:45:41 +03:00
|
|
|
tokio = { workspace = true, features = [
|
|
|
|
"rt-multi-thread",
|
|
|
|
"rt",
|
|
|
|
"macros",
|
|
|
|
"sync",
|
|
|
|
] }
|
2024-07-08 01:45:04 +03:00
|
|
|
gitbutler-git.workspace = true
|
2024-08-11 15:55:00 +03:00
|
|
|
tracing.workspace = true
|
2024-10-03 01:37:53 +03:00
|
|
|
tempfile = "3.13"
|
2024-08-21 15:45:41 +03:00
|
|
|
serde = { workspace = true, features = ["std"] }
|
2024-07-08 20:45:35 +03:00
|
|
|
log = "^0.4"
|
2024-07-08 14:01:38 +03:00
|
|
|
thiserror.workspace = true
|
|
|
|
resolve-path = "0.1.0"
|
2024-07-09 13:31:15 +03:00
|
|
|
ssh2 = { version = "0.9.4", features = ["vendored-openssl"] }
|
2024-07-08 14:23:03 +03:00
|
|
|
gitbutler-command-context.workspace = true
|
2024-07-08 15:49:45 +03:00
|
|
|
gitbutler-config.workspace = true
|
2024-07-08 16:33:26 +03:00
|
|
|
gitbutler-project.workspace = true
|
2024-07-09 01:10:55 +03:00
|
|
|
gitbutler-branch.workspace = true
|
2024-07-09 02:14:28 +03:00
|
|
|
gitbutler-reference.workspace = true
|
2024-07-09 12:13:39 +03:00
|
|
|
gitbutler-error.workspace = true
|
2024-07-09 13:39:18 +03:00
|
|
|
gitbutler-id.workspace = true
|
2024-07-09 14:08:12 +03:00
|
|
|
gitbutler-time.workspace = true
|
2024-07-09 14:19:49 +03:00
|
|
|
gitbutler-commit.workspace = true
|
2024-07-09 16:29:24 +03:00
|
|
|
gitbutler-url.workspace = true
|
2024-08-26 20:23:15 +03:00
|
|
|
gitbutler-cherry-pick.workspace = true
|
2024-09-24 16:38:13 +03:00
|
|
|
gitbutler-oxidize.workspace = true
|
2024-10-08 16:27:16 +03:00
|
|
|
gitbutler-stack.workspace = true
|
2024-08-21 15:45:41 +03:00
|
|
|
uuid.workspace = true
|
2024-08-23 00:29:13 +03:00
|
|
|
itertools = "0.13"
|
2024-07-08 14:01:38 +03:00
|
|
|
|
|
|
|
[[test]]
|
2024-08-21 15:45:41 +03:00
|
|
|
name = "repo"
|
2024-07-08 14:01:38 +03:00
|
|
|
path = "tests/mod.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gitbutler-testsupport.workspace = true
|
2024-07-08 19:58:29 +03:00
|
|
|
gitbutler-user.workspace = true
|
2024-09-24 11:58:46 +03:00
|
|
|
gitbutler-git = { workspace = true, features = ["test-askpass-path"] }
|
2024-08-21 15:45:41 +03:00
|
|
|
serde_json = { version = "1.0", features = ["std", "arbitrary_precision"] }
|