2022-11-27 11:21:35 +00:00
|
|
|
[package]
|
|
|
|
name = "octopush_core"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gitea_client = { path = "../gitea_client" }
|
|
|
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
eyre = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
2025-02-12 05:58:54 +00:00
|
|
|
rand = "0.9.0"
|
2022-11-27 11:21:35 +00:00
|
|
|
hex = "0.4.3"
|
2025-02-12 05:58:54 +00:00
|
|
|
git2 = { version = "0.20.0", features = [
|
2022-11-27 11:21:35 +00:00
|
|
|
"vendored-libgit2",
|
|
|
|
"vendored-openssl",
|
|
|
|
] }
|
2024-05-15 08:16:45 +00:00
|
|
|
serde = { version = "1.0.202", features = ["derive"] }
|
2024-04-09 18:50:44 +00:00
|
|
|
serde_yaml = "0.9.34+deprecated"
|
2025-02-12 05:58:54 +00:00
|
|
|
octocrab = { version = "0.43.0", features = ["futures-core", "futures-util"] }
|