vidya 1.6.0

Vidya — programming reference library and queryable corpus for AGNOS
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"
rust-version = "1.89"
name = "vidya"
version = "1.6.0"
build = false
exclude = [
    ".claude/",
    ".github/",
    "docs/",
    "scripts/",
    "content/",
    ".venv/",
    "target/",
    "*.rlib",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Vidya — programming reference library and queryable corpus for AGNOS"
homepage = "https://github.com/MacCracken/vidya"
documentation = "https://docs.rs/vidya"
readme = "README.md"
keywords = [
    "programming",
    "reference",
    "education",
    "rosetta",
    "best-practices",
]
categories = [
    "development-tools",
    "text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/MacCracken/vidya"

[features]
default = ["std"]
full = [
    "std",
    "logging",
    "mcp",
    "openqasm",
]
logging = ["dep:tracing-subscriber"]
mcp = ["dep:bote"]
openqasm = ["dep:openqasm"]
std = [
    "serde/std",
    "thiserror/std",
]

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

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

[[example]]
name = "test_qasm"
path = "examples/test_qasm.rs"
required-features = ["openqasm"]

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

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

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

[dependencies.bote]
version = "0.50"
optional = true

[dependencies.openqasm]
version = "0.1.2"
features = ["serde"]
optional = true

[dependencies.serde]
version = "1"
features = [
    "derive",
    "alloc",
]
default-features = false

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"
default-features = false

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]
optional = true

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

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