vte 0.10.1

Parser for implementing terminal emulators
Documentation
[package]
authors = ["Joe Wilm <joe@jwilm.com>", "Christian Duerr <contact@christianduerr.com>"]
description = "Parser for implementing terminal emulators"
repository = "https://github.com/alacritty/vte"
documentation = "https://docs.rs/vte/"
keywords = ["ansi", "vte", "parser", "terminal"]
categories = ["parsing", "no-std"]
exclude = ["/.travis.yml"]
readme = "README.md"
license = "Apache-2.0 OR MIT"
version = "0.10.1"
name = "vte"
edition = "2018"

[dependencies]
vte_generate_state_changes = { version = "0.1.0", path = "vte_generate_state_changes" }
arrayvec = { version = "0.5.1", default-features = false, optional = true }
utf8parse = { version = "0.2.0", path = "utf8parse" }

[features]
default = ["no_std"]
no_std = ["arrayvec"]
nightly = ["utf8parse/nightly"]

[workspace]
members = ["utf8parse", "vte_generate_state_changes"]