[package]
edition = "2024"
rust-version = "1.85"
name = "mip-client"
version = "1.0.2"
authors = ["DoctorPok42"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for the MIP (MSIP) protocol with async support and event handling."
homepage = "https://github.com/DoctorPok42/MIP-Clients"
documentation = "https://docs.rs/mip-client"
readme = "README.md"
keywords = [
"mip",
"msip",
"protocol",
"async",
"client",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/DoctorPok42/MIP-Clients/tree/main/mip-client-rust"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "mip_client"
path = "src/lib.rs"
[[bin]]
name = "mip-client-example"
path = "src/main.rs"
[dependencies.bitflags]
version = "2"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"