[package]
edition = "2021"
name = "ruby-prism"
version = "1.9.0"
authors = [
"Steve Loveless <steve.loveless@gmail.com>",
"Ian Ker-Seymer <hello@ianks.com>",
"Kevin Newton <kddnewton@gmail.com>",
]
build = "build.rs"
include = [
"src/",
"build.rs",
"Cargo.toml",
"Cargo.lock",
"vendor",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rustified version of Ruby's prism parsing library"
readme = false
keywords = [
"ruby",
"parser",
"ffi",
"bindings",
]
categories = [
"api-bindings",
"development-tools::ffi",
"external-ffi-bindings",
"parsing",
]
license = "MIT"
license-file = "LICENSE.md"
repository = "https://github.com/ruby/prism"
[features]
default = ["vendored"]
vendored = ["ruby-prism-sys/vendored"]
[lib]
name = "ruby_prism"
path = "src/lib.rs"
[dependencies.ruby-prism-sys]
version = "1.9.0"
[build-dependencies.serde]
version = "1.0"
features = ["derive"]
[build-dependencies.serde_json]
version = "1.0"