mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-19 23:52:05 +03:00
22 lines
556 B
TOML
22 lines
556 B
TOML
[package]
|
|
name = "gitbutler-git"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["git2", "cli", "serde", "tokio"]
|
|
cli = ["std"]
|
|
git2 = ["dep:git2", "std"]
|
|
serde = ["dep:serde"]
|
|
std = ["dep:thiserror"]
|
|
tokio = ["dep:tokio"]
|
|
|
|
[dependencies]
|
|
git2 = { workspace = true, optional = true }
|
|
thiserror = { workspace = true, optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
tokio = { workspace = true, optional = true, features = ["process"]}
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "process"]}
|