xxhash-c-sys 0.8.6

Bindings to xxhash
Documentation
[package]
name = "xxhash-c-sys"
version = "0.8.6"
authors = ["Douman <douman@gmx.se>"]
edition = "2018"
description = "Bindings to xxhash"
readme = "README.md"
repository = "https://github.com/DoumanAsh/xxhash-c-sys"
license = "BSL-1.0"
keywords = ["hash", "xxhash", "bindings"]
categories = ["algorithms"]
include = [
    "**/*.rs",
    "**/*.c",
    "**/*.h",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]

[dependencies.libc]
version = "0.2"
default-features = false

[build-dependencies]
cc = "1"

[features]
# Disables stdlib related functionality
# Specifically all functions that allocate will fail
# This does not affect crate itself as it is just bindings and therefore always no_std
no_std = []