gitbutler/crates/gitbutler-cli/Cargo.toml
Kiril Videlov c36f67f148
move oplog to its own crate
This protects us from cyclic dependencies. Unfortunatelly as part of this, i had to introduce the imp Project as trait implementations since now Project is foreign
2024-07-07 20:00:01 +02:00

21 lines
371 B
TOML

[package]
name = "gitbutler-cli"
version = "0.0.0"
edition = "2021"
authors = ["GitButler <gitbutler@gitbutler.com>"]
publish = false
[[bin]]
name = "gitbutler-cli"
path = "src/main.rs"
[dependencies]
gitbutler-core.workspace = true
gitbutler-oplog.workspace = true
clap = "4.5.4"
anyhow = "1.0.86"
chrono = "0.4.10"
[target."cfg(unix)".dependencies]
pager = "0.16.1"