logos 0.10.0-rc2

Create ridiculously fast Lexers
Documentation
[package]
name = "logos"
version = "0.10.0-rc2"
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]
logos-derive = { version = "0.10.0-rc2", optional = true }

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

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

# 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"]