logos 0.9.7

Create ridiculously fast Lexers
[package]
name = "logos"
version = "0.9.7"
authors = ["maciejhirsz <maciej.hirsz@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Create ridiculously fast Lexers"
repository = "https://github.com/maciejhirsz/logos"
documentation = "https://docs.rs/logos"
keywords = ["lexer", "lexical", "tokenizer", "parser", "no_std"]
categories = ["parsing", "text-processing"]
readme = "../README.md"
edition = "2018"

[dependencies]
toolshed = { version = "0.8", optional = true }
logos-derive = { version = "0.9.7", optional = true }

[features]
default = ["export_derive", "std"]

# Should the crate use the standard library?
std = []

# Provides an `impl Source for NulTermStr` from the `toolshed` crate.
nul_term_source = ["toolshed"]

# Re-exports the `Logos` derive macro, so that end user only needs to
# import this crate and `use logos::Logos` to get both the trait and
# derive proc macro.
export_derive = ["logos-derive"]