This crate provides a EntityTag
structure and functions to deal with the ETag header field of HTTP.
```rust extern crate entity_tag;
use entity_tag::EntityTag;
let etag1 = EntityTag::withstr(true, "foo").unwrap(); let etag2 = EntityTag::fromstr("\"foo\"").unwrap();
asserteq!(true, etag1.weak); asserteq!(false, etag2.weak);
assert!(etag1.weakeq(&etag2)); assert!(etag1.strongne(&etag2)); ```
Disable the default features to compile this crate without std.
toml
[dependencies.entity-tag]
version = "*"
default-features = false
https://crates.io/crates/entity-tag
https://docs.rs/entity-tag