forked from alacritty/vte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1021 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
authors = ["Joe Wilm <[email protected]>", "Christian Duerr <[email protected]>"]
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.11.1"
name = "vte"
edition = "2021"
rust-version = "1.62.1"
[dependencies]
vte_generate_state_changes = { version = "0.1.0", path = "vte_generate_state_changes" }
arrayvec = { version = "0.7.2", default-features = false, optional = true }
log = { version = "0.4.17", optional = true }
utf8parse = { version = "0.2.0", path = "utf8parse" }
serde = { version = "1.0.160", features = ["derive"], optional = true }
[features]
ansi = ["log"]
serde = ["dep:serde"]
default = ["no_std"]
no_std = ["arrayvec"]
nightly = ["utf8parse/nightly"]
[workspace]
members = ["utf8parse", "vte_generate_state_changes"]