mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-07-10 06:42:52 +02:00
25 lines
733 B
TOML
25 lines
733 B
TOML
[package]
|
|
name = "yaak-git"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
git2 = { version = "0.20.4", features = ["vendored-libgit2", "vendored-openssl"] }
|
|
log = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = "0.9.34"
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["io-util"] }
|
|
ts-rs = { workspace = true, features = ["chrono-impl", "serde-json-impl"] }
|
|
url = "2"
|
|
yaak-common = { workspace = true }
|
|
yaak-models = { workspace = true }
|
|
yaak-sync = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
tokio = { workspace = true, features = ["macros", "rt"] }
|