[dependencies.ndarray]
optional = true
version = "0.15"
[dependencies.numpy]
optional = true
version = "0.21"
[dependencies.pyo3]
optional = true
version = "0.21"
[dependencies.transient-derive]
optional = true
version = "0.1"
[dev-dependencies.trybuild]
features = ["diff"]
version = "1.0.49"
[features]
default = ["derive"]
derive = ["transient-derive"]
ndarray = ["dep:ndarray"]
numpy = ["dep:numpy", "ndarray", "pyo3"]
pyo3 = ["dep:pyo3"]
[lib]
doctest = true
name = "transient"
path = "src/lib.rs"
[package]
authors = ["Joshua Rudolph <jrrudolph93@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "Reimplementation of `std::any::Any` with support for non-`'static` types"
documentation = "https://docs.rs/transient"
edition = "2021"
exclude = ["/.gitignore"]
homepage = "https://github.com/JRRudy1/transient"
keywords = ["any", "static", "downcast", "typeid"]
license = "MIT OR Apache-2.0"
name = "transient"
readme = "README.md"
repository = "https://github.com/JRRudy1/transient"
rust-version = "1.56"
version = "0.2.1"