2022-11-06 13:40:00 +01:00
|
|
|
[package]
|
|
|
|
name = "git-log"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2022-11-06 16:08:01 +01:00
|
|
|
[workspace]
|
|
|
|
members = ["crates/gitlog_core"]
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2022-11-06 13:46:04 +01:00
|
|
|
eyre = "0.6.8"
|
2023-04-16 20:27:36 +02:00
|
|
|
git2 = { version = "0.17.1", features = [
|
2022-11-06 16:14:24 +01:00
|
|
|
"vendored-libgit2",
|
|
|
|
"vendored-openssl",
|
2022-11-06 16:27:26 +01:00
|
|
|
#"zlib-ng-compat",
|
2022-11-06 16:14:24 +01:00
|
|
|
] }
|
2023-05-05 10:06:43 +02:00
|
|
|
serde = { version = "1.0.162", features = ["derive"] }
|
2023-04-13 02:27:58 +02:00
|
|
|
serde_json = "1.0.96"
|
2022-11-06 16:08:01 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gitlog_core = { path = "crates/gitlog_core" }
|
|
|
|
|
|
|
|
eyre = { workspace = true }
|
|
|
|
git2 = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2023-05-02 21:38:10 +02:00
|
|
|
clap = { version = "4.2.7", features = ["env", "derive"] }
|