2022-10-25 19:07:37 +02: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 = [
|
2022-10-25 22:00:46 +02:00
|
|
|
"crates/octopush_cli",
|
|
|
|
"crates/octopush_infra",
|
|
|
|
"crates/octopush_core",
|
2022-10-25 19:07:37 +02:00
|
|
|
]
|
|
|
|
|
2022-11-21 14:09:03 +01:00
|
|
|
[workspace.dependencies]
|
|
|
|
eyre = { version = "0.6.8" }
|
|
|
|
async-trait = "0.1.58"
|
|
|
|
tokio = { version = "1.21.2", features = ["full", "test-util"] }
|
|
|
|
tracing = { version = "0.1.37", features = ["log"] }
|
|
|
|
|
2022-10-25 19:07:37 +02:00
|
|
|
[dependencies]
|
2022-10-25 22:00:46 +02:00
|
|
|
octopush_cli = { path = "crates/octopush_cli" }
|
|
|
|
|
|
|
|
eyre = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
2022-11-21 14:09:03 +01:00
|
|
|
tracing = { workspace = true }
|
2022-10-25 22:00:46 +02:00
|
|
|
|
2022-11-21 14:09:03 +01:00
|
|
|
tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] }
|