[package]
edition = "2021"
name = "pyo3-testing"
version = "0.28.0"
authors = ["Mike Foster <https://github.com/MusicalNinjaDad>"]
build = false
include = [
"/src/",
"/tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simplified testing for pyo3-wrapped functions"
homepage = "https://github.com/MusicalNinjas/pyo3-testing"
readme = "README.md"
keywords = [
"pyo3",
"python",
"cpython",
"ffi",
"testing",
]
categories = [
"api-bindings",
"development-tools::ffi",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/MusicalNinjas/pyo3-testing"
[lib]
name = "pyo3_testing"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "test_pyo3test"
path = "tests/test_pyo3test.rs"
[[test]]
name = "test_withpyraises"
path = "tests/test_withpyraises.rs"
[dependencies.proc-macro2]
version = "1.0.103"
[dependencies.pyo3]
version = "0.28.2"
[dependencies.quote]
version = "1.0.42"
[dependencies.syn]
version = "2.0.111"
features = ["full"]
[dependencies.trybuild]
version = "1.0.114"