conduit-core 0.2.0

Binary IPC core: codec, dispatch table, ring buffer.
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"
name = "conduit-core"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary IPC core: codec, dispatch table, ring buffer."
homepage = "https://github.com/userFRM/tauri-conduit"
readme = "README.md"
keywords = [
    "tauri",
    "ipc",
    "binary",
    "codec",
    "ringbuf",
]
categories = [
    "encoding",
    "data-structures",
    "gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/userFRM/tauri-conduit"
resolver = "2"

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "derive_usage"
path = "examples/derive_usage.rs"

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

[[bench]]
name = "codec_bench"
path = "benches/codec_bench.rs"
harness = false

[[bench]]
name = "comparison_bench"
path = "benches/comparison_bench.rs"
harness = false

[[bench]]
name = "dispatch_bench"
path = "benches/dispatch_bench.rs"
harness = false

[[bench]]
name = "ringbuf_bench"
path = "benches/ringbuf_bench.rs"
harness = false

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.tokio]
version = "1"
features = ["full"]