byte-transcoder 0.0.2

A Rust+Typescript library to transcode higher-level data types to/from bytes.
Documentation
[dependencies.uuid]
version = "1.10.0"

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

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

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.complexity]
level = "deny"
priority = -1

[lints.clippy.correctness]
level = "deny"
priority = -1

[lints.clippy.nursery]
level = "allow"
priority = 1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.clippy.perf]
level = "deny"
priority = -1

[lints.clippy.style]
level = "deny"
priority = -1

[lints.clippy.suspicious]
level = "deny"
priority = -1

[lints.rust.unsafe_code]
level = "forbid"
priority = 0

[package]
authors = ["Todd Everett Griffin <tgriffin115@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["encoding", "parsing", "parser-implementations", "compression", "data-structures"]
description = "A Rust+Typescript library to transcode higher-level data types to/from bytes."
edition = "2021"
homepage = "https://www.toddgriffin.me/"
include = ["**/*.rs", "Cargo.toml", ".clippy.toml", "LICENSE", "README.md"]
keywords = ["byte", "transcode", "encode", "parse", "serialize"]
license = "MIT"
name = "byte-transcoder"
readme = "README.md"
repository = "https://github.com/goddtriffin/byte-transcoder-rs"
rust-version = "1.81"
version = "0.0.2"

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

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