**Summary:** - Bumped `git2` from `0.18` to `0.19` in 4 Cargo.toml files - This brings in libgit2 1.8.1 which supports `index.skipHash` - Build compiles successfully
22 lines
482 B
TOML
22 lines
482 B
TOML
[package]
|
|
name = "deployment"
|
|
version = "0.0.143"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
db = { path = "../db" }
|
|
utils = { path = "../utils" }
|
|
services = { path = "../services" }
|
|
executors = { path = "../executors" }
|
|
async-trait = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
sqlx = "0.8.6"
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
git2 = "0.19"
|
|
futures = "0.3.31"
|
|
axum = { workspace = true }
|
|
|