jmap-server 0.1.3

Backend-agnostic JMAP server framework (RFC 8620): parsing, ResultReference resolution, and Dispatcher
Documentation
[package]
name = "jmap-server"
version = "0.1.3"
authors.workspace = true
repository.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "Backend-agnostic JMAP server framework (RFC 8620): parsing, ResultReference resolution, and Dispatcher"
keywords = ["jmap", "rfc8620", "server", "dispatcher"]
categories = ["network-programming", "web-programming::http-server"]

[dependencies]
jmap-types = { workspace = true }
http = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }

[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
# Statistics-driven micro-benchmarking. Used for `cargo bench` targets under
# `benches/` only — not a runtime dep. Pinned to a major version so the bench
# wiring is reproducible across the workspace as siblings adopt the same
# pattern (bd:JMAP-sc1b.18).
criterion = { workspace = true }

# Each benchmark target in `benches/` needs an explicit `[[bench]]` entry so
# `cargo bench` discovers it and disables libtest's default harness for the
# file (criterion supplies its own).

[[bench]]
name = "dispatcher"
harness = false