56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
|
|
# 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.56.0"
|
||
|
|
name = "leb128fmt"
|
||
|
|
version = "0.1.0"
|
||
|
|
authors = ["Bryant Luk <code@bryantluk.com>"]
|
||
|
|
include = [
|
||
|
|
"src/**/*.rs",
|
||
|
|
"Cargo.toml",
|
||
|
|
"CHANGELOG.md",
|
||
|
|
"README.md",
|
||
|
|
"LICENSE-APACHE",
|
||
|
|
"LICENSE-MIT",
|
||
|
|
]
|
||
|
|
description = "A library to encode and decode LEB128 compressed integers."
|
||
|
|
documentation = "https://docs.rs/leb128fmt"
|
||
|
|
readme = "README.md"
|
||
|
|
keywords = [
|
||
|
|
"leb128",
|
||
|
|
"encoding",
|
||
|
|
"no_std",
|
||
|
|
"compression",
|
||
|
|
]
|
||
|
|
categories = [
|
||
|
|
"encoding",
|
||
|
|
"no-std",
|
||
|
|
"no-std::no-alloc",
|
||
|
|
"compression",
|
||
|
|
"parser-implementations",
|
||
|
|
]
|
||
|
|
license = "MIT OR Apache-2.0"
|
||
|
|
repository = "https://github.com/bluk/leb128fmt"
|
||
|
|
|
||
|
|
[package.metadata.docs.rs]
|
||
|
|
all-features = true
|
||
|
|
rustdoc-args = [
|
||
|
|
"--cfg",
|
||
|
|
"docsrs",
|
||
|
|
]
|
||
|
|
|
||
|
|
[features]
|
||
|
|
alloc = []
|
||
|
|
default = ["std"]
|
||
|
|
std = []
|