octopush/crates/octopush_core/Cargo.toml

25 lines
626 B
TOML
Raw Normal View History

[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 }
rand = "0.8.5"
hex = "0.4.3"
2023-04-16 20:33:51 +02:00
git2 = { version = "0.17.1", features = [
"vendored-libgit2",
"vendored-openssl",
] }
2023-04-11 08:17:05 +02:00
serde = { version = "1.0.160", features = ["derive"] }
serde_yaml = "0.9.21"
2023-03-23 18:41:01 +01:00
octocrab = { version = "0.19.0", features = ["futures-core", "futures-util"] }