-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.08 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "rtwins"
version = "0.5.2"
authors = ["Mariusz Midor <mmidor@gmail.com>"]
edition = "2021"
description = "Library designed for creation of text user interface applications (TUI) for microcontrollers (but not limited to)"
readme = "README.md"
keywords = ["cli", "tui", "console", "no_std", "embedded"]
categories = ["command-line-utilities", "no-std"]
license = "MIT"
repository = "https://github.com/marmidr/rtwins"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atomic_once_cell = "0.1.5"
try-lock = "0.2.4"
unicode-width = "0.1"
# num_enum = "0.5.10"
# enum-iterator = "1.3.0"
# log = "0.4"
# paste = "1.0.10"
# spin = "0.7.1"
# strum = "0.2"
[dev-dependencies]
chrono = "0.4"
libc = "0.2"
pretty_assertions = "1.3.0"
[profile.release]
# optimize examples:
lto = true # 53KiB -> 34KiB
opt-level = 'z'
[features]
# enable fast line drawing on terminals supporting code ESC-b
fast_line = []
# demos: delay after each flush() to show the render progress
slow_flush = []
# default features:
default = ["fast_line"]