qrpc 0.1.2

qrpc is a small QUIC + mTLS messaging library
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"
name = "qrpc"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "qrpc is a small QUIC + mTLS messaging library"
readme = "README.md"
keywords = [
    "quic",
    "rpc",
    "mtls",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/Akiko97/qrpc"

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

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

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

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

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

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

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

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

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

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

[dependencies.dashmap]
version = "6.1.0"

[dependencies.futures]
version = "0.3.32"

[dependencies.prost]
version = "0.14.3"

[dependencies.quinn]
version = "0.11.9"

[dependencies.rustls]
version = "0.23.37"
features = [
    "std",
    "ring",
    "tls12",
]
default-features = false

[dependencies.rustls-pemfile]
version = "2.2.0"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.50.0"
features = ["full"]

[dependencies.tracing]
version = "0.1.44"

[dependencies.ulid]
version = "1.2.1"

[dev-dependencies]