ryo-source 0.1.0

High-speed Rust AST manipulation engine
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"
name = "ryo-source"
version = "0.1.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-speed Rust AST manipulation engine"
homepage = "https://github.com/ynishi/ryo-rs"
readme = "README.md"
keywords = [
    "ast",
    "rust",
    "parser",
    "syn",
]
categories = [
    "development-tools",
    "parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/ryo-rs"

[features]
default = []
parallel = ["rayon"]
schemars = ["dep:schemars"]
serde = ["dep:serde"]
test-utils = ["dep:tempfile"]

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

[[bench]]
name = "ast_ops"
path = "benches/ast_ops.rs"
harness = false
required-features = ["parallel"]

[dependencies.anyhow]
version = "1.0"

[dependencies.prettyplease]
version = "0.2"

[dependencies.proc-macro2]
version = "1.0"

[dependencies.quote]
version = "1.0"

[dependencies.rayon]
version = "1.10"
optional = true

[dependencies.schemars]
version = "1.2"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.syn]
version = "2.0"
features = [
    "full",
    "parsing",
    "printing",
    "visit",
    "visit-mut",
    "extra-traits",
]

[dependencies.tempfile]
version = "3.14"
optional = true

[dependencies.thiserror]
version = "1.0"

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

[dev-dependencies.pretty_assertions]
version = "1.4"

[dev-dependencies.rayon]
version = "1.10"

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

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

[dev-dependencies.tempfile]
version = "3.14"