async_py 0.2.0

A Rust library for calling Python code asynchronously using pyo3 or rustpython.
Documentation
[dependencies.dunce]
version = "1.0.4"

[dependencies.pyo3]
features = ["auto-initialize"]
optional = true
version = "0.26.0"

[dependencies.rustpython-stdlib]
features = ["threading"]
optional = true
version = "0.4.0"

[dependencies.rustpython-vm]
features = ["threading", "serde", "importlib"]
optional = true
version = "0.4.0"

[dependencies.serde_json]
version = "1.0.114"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
features = ["sync", "macros"]
version = "1.36.0"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
features = ["full"]
version = "1"

[features]
default = ["pyo3"]
pyo3 = ["dep:pyo3"]
rustpython = ["dep:rustpython-vm", "dep:rustpython-stdlib"]

[lib]
name = "async_py"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["api-bindings", "asynchronous", "external-ffi-bindings"]
description = "A Rust library for calling Python code asynchronously using pyo3 or rustpython."
edition = "2021"
keywords = ["python", "async", "pyo3", "rustpython", "ffi"]
license = "MIT"
name = "async_py"
readme = "README.md"
repository = "https://github.com/marcomq/async_py"
version = "0.2.0"