entity-tag 0.1.8

This crate provides a `EntityTag` structure and functions to deal with the ETag header field of HTTP.
Documentation
[package]
name = "entity-tag"
version = "0.1.8"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2021"
rust-version = "1.56"
repository = "https://github.com/magiclen/entity-tag"
homepage = "https://magiclen.org/entity-tag"
keywords = ["etag", "if-match", "if-none-match"]
categories = ["no-std", "parser-implementations", "data-structures", "network-programming"]
description = "This crate provides a `EntityTag` structure and functions to deal with the ETag header field of HTTP."
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]

[dependencies]
base64 = { version = "0.21", default-features = false, features = ["alloc"] }
highway = { version = "1", default-features = false }

[features]
default = ["std"]
std = ["base64/std", "highway/std"]