[package]
edition = "2024"
rust-version = "1.87.0"
name = "cith"
version = "0.1.0"
authors = ["Radzivon Bartoshyk"]
build = false
exclude = [
"*.jpg",
"/assets",
"*.png",
"*.sh",
"/assets/*",
]
include = [
"/src/",
"/README.md",
"/LICENSE.md",
"/LICENSE-APACHE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CityHash hasher"
homepage = "https://github.com/awxkee/cith"
documentation = "https://github.com/awxkee/cith"
readme = "README.md"
keywords = [
"hash",
"cityhash",
]
categories = ["algorithms"]
license = "BSD-3-Clause OR Apache-2.0"
repository = "https://github.com/awxkee/cith"
[lib]
name = "cith"
path = "src/lib.rs"
[dependencies]