Registry / serialization / json-tools

json-tools

JSON →
library1.1.3rscratesunverified

A zero-copy JSON lexer, filters, and serializer for efficient JSON processing.

# Cargo.toml [dependencies] json-tools = "1.1.3"
INSTALL
IMPORT
SIG · JSON-TOOLS
J
json-tools
serializationrustv1.1.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

JsonLexer
use json_tools::JsonLexer;

Lexes a JSON string into tokens without allocation.

use json_tools::JsonLexer; let input = r#"{"key": "value"}"#; let lexer = JsonLexer::new(input.as_bytes()); for token in lexer { println!("{:?}", token); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.1.3latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
json-tools — cargo add json-tools · libregistry