#pdcurses #curses #bindings #specifically #flavor #pd-curses #win32a

sys pdcurses-sys

FFI bindings for PDCurses, specifically the win32a implementation

11 releases (6 breaking)

Uses old Rust 2015

0.7.1 Mar 9, 2019
0.7.0 Nov 16, 2017
0.6.0 Nov 4, 2017
0.5.1 Sep 18, 2017
0.1.0 Mar 16, 2016

#482 in Command-line interface

Download history 526/week @ 2023-11-29 597/week @ 2023-12-06 744/week @ 2023-12-13 674/week @ 2023-12-20 411/week @ 2023-12-27 525/week @ 2024-01-03 727/week @ 2024-01-10 644/week @ 2024-01-17 646/week @ 2024-01-24 606/week @ 2024-01-31 761/week @ 2024-02-07 851/week @ 2024-02-14 761/week @ 2024-02-21 938/week @ 2024-02-28 891/week @ 2024-03-06 597/week @ 2024-03-13

3,324 downloads per month
Used in 58 crates (3 directly)

MIT license

1MB
27K SLoC

C 24K SLoC // 0.2% comments Rust 2K SLoC // 0.0% comments M4 861 SLoC // 0.1% comments RPM Specfile 65 SLoC

pdcurses-sys Build status Crates.io

pdcurses-sys provides Rust FFI bindings for PDCurses, specifically the fork by Bill-Gray.

Requirements

A native C compiler that cc-rs can use to compile PDCurses.

On Windows this means that you need the Visual C++ Build Tools. Check the rustup docs for more Rust <-> Windows information.

Usage

Cargo.toml

[dependencies]
pdcurses-sys = "0.7"

Picking a flavor

pdcurses-sys supports both the win32 and win32a flavors of PDCurses. It defaults to win32a if none is specified. You can use Cargo features to choose which one to use:

Cargo.toml

[dependencies.pdcurses-sys]
version = "0.7"
features = ["win32"]

License

Licensed under the MIT license, see LICENSE.md

Dependencies