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]
|
2023-08-29 06:26:36 +00:00
|
|
|
pyo3 = { path = "../", features = ["auto-initialize", "full"] }
|
2023-07-29 05:28:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-29 06:26:36 +00:00
|
|
|
codspeed-criterion-compat = "2.3"
|
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-08-29 06:26:36 +00:00
|
|
|
rust_decimal = { version = "1.0.0", default-features = false }
|
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
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_dict"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_frompyobject"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_gil"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_list"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_pyclass"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_pyobject"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench_set"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[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
|
|
|
|
|
2023-07-29 05:28:39 +00:00
|
|
|
[workspace]
|