tipsy 0.7.0

Cross-platform IPC for Tokio
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85.0"
name = "tipsy"
version = "0.7.0"
authors = ["Austin Schey <aschey13@gmail.com>"]
build = false
include = [
    "/src",
    "/examples",
    "/tests",
    "LICENSE-MIT",
    "LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform IPC for Tokio"
homepage = "https://github.com/aschey/tipsy"
readme = "README.md"
keywords = [
    "tokio",
    "ipc",
]
categories = [
    "asynchronous",
    "network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aschey/tipsy"

[lib]
name = "tipsy"
path = "src/lib.rs"

[[example]]
name = "client"
path = "examples/client.rs"
doc-scrape-examples = true

[[example]]
name = "server"
path = "examples/server.rs"
doc-scrape-examples = true

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.futures-util]
version = "0.3"

[dependencies.tokio]
version = "1.23.1"
features = [
    "net",
    "time",
]

[dependencies.tracing]
version = "0.1.36"

[dev-dependencies.futures-channel]
version = "0.3.31"

[dev-dependencies.rand]
version = "0.10.0"

[dev-dependencies.tokio]
version = "1.37.0"
features = [
    "io-util",
    "rt-multi-thread",
    "time",
    "macros",
]

[target."cfg(unix)".dependencies.dirs]
version = "6"

[target."cfg(unix)".dependencies.libc]
version = "0.2.65"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
    "Win32_Foundation",
    "Win32_Security",
    "Win32_System_SystemServices",
    "Win32_Storage_FileSystem",
    "Win32_Security_Authorization",
    "Win32_System_Memory",
]

[lints.clippy]
allow_attributes = "deny"
default_trait_access = "warn"
doc_markdown = "warn"
explicit_into_iter_loop = "warn"
explicit_iter_loop = "warn"
ignored_unit_patterns = "warn"
impl_trait_in_params = "warn"
missing_fields_in_debug = "warn"
missing_panics_doc = "warn"
redundant_closure_for_method_calls = "warn"
semicolon_if_nothing_returned = "warn"
use_self = "warn"

[lints.rustdoc]
broken_intra_doc_links = "deny"