gitbutler/gitbutler-git/Cargo.toml

19 lines
459 B
TOML
Raw Normal View History

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