[package]
edition = "2024"
name = "shape-ext-python"
version = "0.1.8"
authors = ["Daniel Amesberger"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shape Python language runtime extension"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/shape-lang/shape"
resolver = "2"
[features]
default = ["pyo3"]
pyo3 = ["dep:pyo3"]
[lib]
name = "shape_ext_python"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.pyo3]
version = "0.28"
features = ["auto-initialize"]
optional = true
[dependencies.rmp-serde]
version = "1.3"
[dependencies.rmpv]
version = "1"
features = ["with-serde"]
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.shape-abi-v1]
version = "=0.1.3"
features = ["serde"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"