[workspace]
members = [".", "netmito"]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
homepage = "https://github.com/stack-rs/mitosis"
repository = "https://github.com/stack-rs/mitosis"
rust-version = "1.76"
license = "Apache-2.0"
readme = "README.md"
description = "A Unified Distributed Transport Evaluation Framework"
keywords = ["distributed", "transport", "evaluation", "network", "utility"]
categories = ["network-programming", "concurrency", "command-line-utilities"]
[workspace.dependencies]
clap = { version = "4.5.27", features = ["std", "derive"] }
jsonwebtoken = "9.3.0"
md5 = "0.7.0"
redis = { version = "0.28.2", features = ["tokio-comp"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.43", features = [
"macros",
"rt-multi-thread",
"parking_lot",
"process",
"signal",
"net",
"time",
"sync",
"io-util",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[workspace.metadata.dist]
cargo-dist-version = "0.16.0"
ci = "github"
installers = ["shell"]
targets = ["x86_64-unknown-linux-gnu"]
pr-run-mode = "plan"
install-updater = false
allow-dirty = ["ci"]
[package]
name = "mito"
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
license.workspace = true
readme.workspace = true
description.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
clap = { workspace = true }
netmito = { path = "netmito", version = "0.3.0" }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
[features]
debugging = ["netmito/debugging"]
[profile.dist]
inherits = "release"
lto = "thin"