2022-11-27 12:21:35 +01:00
|
|
|
[package]
|
|
|
|
name = "octopush"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/octopush_cli",
|
|
|
|
"crates/octopush_infra",
|
|
|
|
"crates/octopush_core",
|
|
|
|
"crates/gitea_raw_client",
|
|
|
|
"crates/gitea_client",
|
|
|
|
]
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-02-07 05:42:27 +01:00
|
|
|
eyre = { version = "0.6.12" }
|
|
|
|
async-trait = "0.1.77"
|
|
|
|
tokio = { version = "1.36.0", features = ["full", "test-util"] }
|
|
|
|
tracing = { version = "0.1.40", features = ["log"] }
|
2022-11-27 12:21:35 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
octopush_cli = { path = "crates/octopush_cli" }
|
|
|
|
|
|
|
|
eyre = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
2024-02-07 05:42:27 +01:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
|
2022-11-27 12:21:35 +01:00
|
|
|
dotenv = { version = "0.15.0", features = ["clap", "cli"] }
|