-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (35 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "xxh3"
description = "XXH3 hash function"
homepage = "https://github.com/cberner/xxh3"
repository = "https://github.com/cberner/xxh3"
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.63"
authors = ["Christopher Berner <christopherberner@gmail.com>"]
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
pyo3 = {version = "0.17.1", features=["extension-module", "abi3-py37"], optional = true }
[dev-dependencies]
criterion = { version = "0.4.0", features=["html_reports"] }
rand = "0.8"
xxhash_reference = { path = "./xxhash_reference" }
[features]
python = ["pyo3"]
[profile.bench]
debug = true
[[bench]]
name = "benchmark"
harness = false
[package.metadata.maturin]
requires-python = ">= 3.7"
classifier = ["Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust"]