Files
ansi-parser/Cargo.toml
Dániel Buga 2925f56c1f no_std
Add `std` default feature
Only implement for String if `std` is enabled
Replace std Vec with heapless
2020-10-05 11:56:07 +02:00

19 lines
352 B
TOML

[package]
name = "ansi-parser"
description = "A library using nom for parsing ANSI Escape Codes"
homepage = "https://gitlab.com/DavidBittner/ansi-parser"
authors = ["David Bittner <bittneradave@gmail.com>"]
version = "0.6.5"
license = "MPL-2.0"
edition = "2018"
[dependencies]
nom = "4.2.3"
heapless = "0.5.6"
[features]
std = []
default = ["std"]