[package] name = "parsley-rs" version = "0.20.4" edition = "2021" authors = ["Noah Shanaberger "] description = "My attempt at a Rust parsing and lexing library." license = "MIT" homepage = "https://github.com/32Bites/parsley-rs/" repository = "https://github.com/32Bites/parsley-rs/" readme = "README.md" keywords = ["lexer", "parser", "lexing", "parsing", "analysis"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # Comment [workspace] members = ["crates/*"] [features] net = [] dns = ["net", "dep:dns-lookup"] fs = ["dep:parsley-rs-hack"] buffer = [] default = ["fs", "buffer", "net"] [dependencies] unicode-segmentation = "1.9" character-stream = "0.9" textwrap = "0.15" parsley-rs-hack = { path = "crates/hack", version = "0.1.0", optional = true } dns-lookup = { version = "1.0.8", optional = true }