vu64 0.3.0

variable length encode/decode for a 64-bits integer
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 = "2021"
rust-version = "1.58.0"
name = "vu64"
version = "0.3.0"
authors = ["aki <aki.akaguma@hotmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "variable length encode/decode for a 64-bits integer"
readme = "README.md"
keywords = [
    "serialization",
    "varint",
    "integer",
]
categories = []
license = "MIT OR Apache-2.0"
repository = "https://github.com/aki-akaguma/vu64"

[features]
default = [
    "io",
    "std",
]
io = []
std = []
vu64_debug = []

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

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

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

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

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

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

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

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

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

[dependencies]