cargo : adler2 @ 2.0.1
Cargo.toml
92 lines · toml · 2 line annotations
# 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"name = "adler2"version = "2.0.1"authors = [ "Jonas Schievink <jonasschievink@gmail.com>", "oyvindln <oyvindln@users.noreply.github.com>",]build = falseLine 20–20
build = false confirms no build script. No build.rs in the crate. Justifies has-build-exec = false.
exclude = [".*"]autolib = falseautobins = falseautoexamples = falseautotests = falseautobenches = falsedescription = "A simple clean-room implementation of the Adler-32 checksum"documentation = "https://docs.rs/adler2/"readme = "README.md"keywords = [ "checksum", "integrity", "hash", "adler32", "zlib",]categories = ["algorithms"]license = "0BSD OR MIT OR Apache-2.0"repository = "https://github.com/oyvindln/adler2"[package.metadata.docs.rs]rustdoc-args = ["--cfg=docsrs"][package.metadata.release]no-dev-version = truepre-release-commit-message = "Release {{version}}"tag-message = "{{version}}"[[package.metadata.release.pre-release-replacements]]file = "CHANGELOG.md"replace = """## UnreleasedNo changes.## [{{version}} - {{date}}](https://github.com/jonas-schievink/adler/releases/tag/v{{version}})"""search = """## Unreleased"""[[package.metadata.release.pre-release-replacements]]file = "README.md"replace = 'adler = "{{version}}"'search = 'adler = "[a-z0-9\\.-]+"'[[package.metadata.release.pre-release-replacements]]file = "src/lib.rs"replace = "https://docs.rs/adler/{{version}}"search = 'https://docs.rs/adler/[a-z0-9\.-]+'[features]default = ["std"]rustc-dep-of-std = ["core"]std = []Line 72–75
Default feature is std. The std feature is empty; the only optional dependency, rustc-std-workspace-core, is gated behind rustc-dep-of-std for libstd integration only and is not a feature pulled by default consumers.
[lib]name = "adler2"path = "src/lib.rs"[[bench]]name = "bench"path = "benches/bench.rs"harness = false[dependencies.core]version = "1.0.0"optional = truepackage = "rustc-std-workspace-core"[dev-dependencies]