88 lines
1.7 KiB
TOML
88 lines
1.7 KiB
TOML
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
|
|
#
|
|
# When uploading crates to the registry Cargo will automatically
|
|
# "normalize" Cargo.toml files for maximal compatibility
|
|
# with all versions of Cargo and also rewrite `path` dependencies
|
|
# to registry (e.g., crates.io) dependencies.
|
|
#
|
|
# If you are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.62.1"
|
|
name = "vte"
|
|
version = "0.14.1"
|
|
authors = [
|
|
"Joe Wilm <joe@jwilm.com>",
|
|
"Christian Duerr <contact@christianduerr.com>",
|
|
]
|
|
build = false
|
|
exclude = ["/.travis.yml"]
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "Parser for implementing terminal emulators"
|
|
documentation = "https://docs.rs/vte/"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"ansi",
|
|
"vte",
|
|
"parser",
|
|
"terminal",
|
|
]
|
|
categories = [
|
|
"parsing",
|
|
"no-std",
|
|
]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/alacritty/vte"
|
|
|
|
[features]
|
|
ansi = [
|
|
"log",
|
|
"cursor-icon",
|
|
"bitflags",
|
|
]
|
|
default = ["no_std"]
|
|
no_std = ["arrayvec"]
|
|
serde = ["dep:serde"]
|
|
|
|
[lib]
|
|
name = "vte"
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "parselog"
|
|
path = "examples/parselog.rs"
|
|
|
|
[dependencies.arrayvec]
|
|
version = "0.7.2"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.bitflags]
|
|
version = "2.3.3"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.cursor-icon]
|
|
version = "1.0.0"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dependencies.log]
|
|
version = "0.4.17"
|
|
optional = true
|
|
|
|
[dependencies.memchr]
|
|
version = "2.7.4"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.160"
|
|
features = ["derive"]
|
|
optional = true
|