pyo3/pyo3-benches/Cargo.toml

87 lines
1.3 KiB
TOML
Raw Normal View History

2023-07-29 05:28:39 +00:00
[package]
name = "pyo3-benches"
version = "0.1.0"
description = "In-tree benchmarks for the PyO3 project"
authors = ["PyO3 Project and Contributors <https://github.com/PyO3>"]
edition = "2021"
publish = false
[dependencies]
pyo3 = { path = "../", features = ["auto-initialize"] }
[dev-dependencies]
2023-07-29 05:42:34 +00:00
criterion = "0.5.1"
2023-08-11 10:42:35 +00:00
num-bigint = "0.4.3"
2023-07-29 05:28:39 +00:00
[[bench]]
name = "bench_any"
harness = false
[[bench]]
name = "bench_call"
harness = false
[[bench]]
name = "bench_comparisons"
harness = false
[[bench]]
name = "bench_err"
harness = false
[[bench]]
name = "bench_decimal"
harness = false
required-features = ["pyo3/rust_decimal"]
[[bench]]
name = "bench_dict"
harness = false
required-features = ["pyo3/hashbrown"]
[[bench]]
name = "bench_frompyobject"
harness = false
required-features = ["pyo3/macros"]
[[bench]]
name = "bench_gil"
harness = false
[[bench]]
name = "bench_list"
harness = false
[[bench]]
name = "bench_pyclass"
harness = false
required-features = ["pyo3/macros"]
[[bench]]
name = "bench_pyobject"
harness = false
[[bench]]
name = "bench_set"
harness = false
required-features = ["pyo3/hashbrown"]
[[bench]]
name = "bench_tuple"
harness = false
[[bench]]
name = "bench_intern"
harness = false
[[bench]]
name = "bench_extract"
harness = false
2023-08-11 10:42:35 +00:00
[[bench]]
name = "bench_bigint"
harness = false
required-features = ["pyo3/num-bigint"]
2023-07-29 05:28:39 +00:00
[workspace]