2024-01-17 18:21:21 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-git"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[features]
|
2024-01-18 00:31:51 +03:00
|
|
|
default = ["git2", "cli", "serde", "tokio"]
|
|
|
|
cli = ["std"]
|
2024-01-17 18:21:21 +03:00
|
|
|
git2 = ["dep:git2", "std"]
|
|
|
|
serde = ["dep:serde"]
|
2024-01-18 00:31:51 +03:00
|
|
|
std = ["dep:thiserror"]
|
|
|
|
tokio = ["dep:tokio"]
|
2024-01-17 18:21:21 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
git2 = { workspace = true, optional = true }
|
2024-01-18 00:31:51 +03:00
|
|
|
thiserror = { workspace = true, optional = true }
|
|
|
|
serde = { workspace = true, optional = true }
|
|
|
|
tokio = { workspace = true, optional = true, features = ["process"]}
|