tynavi 0.1.3

An immutable selector library for navigating, filtering, and backtracking through deeply nested Rust data structures.
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 = "2024"
name = "tynavi"
version = "0.1.3"
authors = ["Ecamika <index@ecamika.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An immutable selector library for navigating, filtering, and backtracking through deeply nested Rust data structures."
readme = "README.md"
license = "MIT"

[features]
axum = ["dep:axum"]
default = ["full"]
derive = ["dep:tynavi-macros"]
full = [
    "derive",
    "serde_json",
    "tungstenite",
    "http",
    "axum",
    "reqwest",
]
http = ["dep:http"]
reqwest = [
    "dep:reqwest",
    "http",
]
serde_json = ["dep:serde_json"]
tungstenite = ["dep:tungstenite"]

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

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

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

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

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

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

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

[dependencies.axum]
version = "0.8"
optional = true

[dependencies.http]
version = "1.0"
optional = true

[dependencies.reqwest]
version = "0.12.28"
optional = true
default-features = false

[dependencies.serde_json]
version = "1.0.150"
optional = true

[dependencies.tungstenite]
version = "0.29.0"
optional = true

[dependencies.tynavi-macros]
version = "0.1.0"
optional = true