-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 985 Bytes
/
Copy pathCargo.toml
File metadata and controls
21 lines (19 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "ncurses-native"
version = "0.1.5"
edition = "2021"
rust-version = "1.74"
license = "Apache-2.0"
repository = "https://github.com/infinityabundance/ncurses-native"
description = "Clean-room, dependency-free Rust reproduction of ncurses terminal output (cursor-movement optimizer, SGR attributes, color, screen framing) for the admitted xterm/ncurses 6.4 terminal. A byte-exact seed toward native-Rust curses output parity."
keywords = ["curses", "terminal", "tui", "ansi", "terminfo"]
categories = ["command-line-interface"]
readme = "README.md"
[lints.rust]
unsafe_code = "forbid"
# The published crate is the package above. `xtask` is a development-only
# workspace member (it generates docs/generated/*.md from the committed models);
# it is never a dependency of the published crate and is not itself published.
[workspace]
members = ["xtask", "crates/ncurses-terminal", "crates/ncurses-cabi", "crates/ncurses-tools", "crates/ncurses-tinfo-cabi"]
resolver = "2"