octopush/crates/octopush_core/Cargo.toml

24 lines
547 B
TOML
Raw Normal View History

2022-10-25 22:00:46 +02: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]
2022-11-27 01:56:07 +01:00
gitea_client = { path = "../gitea_client" }
2022-10-25 22:00:46 +02:00
async-trait = { workspace = true }
eyre = { workspace = true }
tokio = { workspace = true }
2022-11-21 21:27:36 +01:00
tracing = { workspace = true }
2022-11-21 14:09:03 +01:00
2022-10-25 22:00:46 +02:00
rand = "0.8.5"
hex = "0.4.3"
2022-11-27 12:08:27 +01:00
git2 = { version = "0.15.0", features = [
"vendored-libgit2",
"vendored-openssl",
] }
2022-11-21 21:27:36 +01:00
serde = { version = "1.0.147", features = ["derive"] }
serde_yaml = "0.9.14"