reify-reflect 0.1.1

Unified reification and reflection ecosystem for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.75.0"
name = "reify-reflect"
version = "0.1.1"
authors = ["Josh Burgess <joshburgesswebdev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified reification and reflection ecosystem for Rust"
homepage = "https://github.com/joshburgess/reify-reflect"
readme = "README.md"
keywords = [
    "reflection",
    "reify",
    "type-level",
    "const-generics",
    "metaprogramming",
]
categories = [
    "rust-patterns",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/reify-reflect"

[features]
const-reify = ["dep:const-reify"]
default = ["serde"]
frunk = ["reflect-nat/frunk"]
full = [
    "serde",
    "const-reify",
    "typenum",
    "frunk",
]
serde = [
    "reify-graph/serde",
    "async-reify/serde",
]
typenum = ["reflect-nat/typenum"]

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

[[example]]
name = "roundtrip"
path = "examples/roundtrip.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false

[dependencies.async-reify]
version = "0.1.1"

[dependencies.const-reify]
version = "0.1.1"
optional = true

[dependencies.context-trait]
version = "0.1.1"

[dependencies.reflect-derive]
version = "0.1.1"

[dependencies.reflect-nat]
version = "0.1.1"

[dependencies.reify-graph]
version = "0.1.1"

[dependencies.reify-reflect-core]
version = "0.1.1"

[dev-dependencies.const-reify]
version = "0.1.1"

[dev-dependencies.const-reify-derive]
version = "0.1.1"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tokio]
version = "1"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
    "time",
]

[dev-dependencies.tokio-test]
version = "0.4"