2024-05-04 12:29:14 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-cli"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
|
|
publish = false
|
2024-07-29 17:57:47 +03:00
|
|
|
rust-version = "1.74"
|
2024-05-04 12:29:14 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "gitbutler-cli"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-07-07 21:00:01 +03:00
|
|
|
gitbutler-oplog.workspace = true
|
2024-07-08 16:33:26 +03:00
|
|
|
gitbutler-project.workspace = true
|
2024-07-27 20:15:02 +03:00
|
|
|
gitbutler-reference.workspace = true
|
|
|
|
gitbutler-branch-actions.workspace = true
|
2024-08-11 15:04:37 +03:00
|
|
|
gitbutler-command-context.workspace = true
|
2024-07-27 20:15:02 +03:00
|
|
|
gitbutler-branch.workspace = true
|
2024-07-28 11:46:46 +03:00
|
|
|
gitbutler-diff.workspace = true
|
2024-10-08 16:27:16 +03:00
|
|
|
gitbutler-stack.workspace = true
|
2024-08-13 15:10:17 +03:00
|
|
|
gix = { workspace = true, features = ["max-performance", "tracing"] }
|
2024-07-27 20:15:02 +03:00
|
|
|
dirs-next = "2.0.0"
|
2024-10-03 01:37:53 +03:00
|
|
|
clap = { version = "4.5.19", features = ["derive", "env"] }
|
2024-06-01 18:38:43 +03:00
|
|
|
anyhow = "1.0.86"
|
2024-05-04 12:29:14 +03:00
|
|
|
chrono = "0.4.10"
|
2024-08-11 15:55:00 +03:00
|
|
|
tracing-forest = { version = "0.1.6" }
|
|
|
|
tracing-subscriber.workspace = true
|
|
|
|
tracing.workspace = true
|