Skip to content

Commit

Permalink
save the current ncurses-rs build.rs WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
correabuscar committed Apr 13, 2024
1 parent e5077b6 commit 9304877
Show file tree
Hide file tree
Showing 3 changed files with 1,536 additions and 0 deletions.
38 changes: 38 additions & 0 deletions rust/05_sandbox/buildrs2/1tmp/02/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[package]
name = "ncurses"
version = "6.0.0"
authors = [ "contact@jeaye.com" ]
description = "A very thin wrapper around the ncurses TUI library"
documentation = "https://github.com/jeaye/ncurses-rs"
homepage = "https://github.com/jeaye/ncurses-rs"
repository = "https://github.com/jeaye/ncurses-rs"
readme = "README.md"
keywords = ["ncurses","TUI"]
license = "MIT"
build = "build.rs"

[build-dependencies]
cc = "1.0.92"
pkg-config = "0.3"

[dependencies]
libc = "0.2"

[features]
default=[]
wide = []
panel = []
menu = []
# Uses a 64-bit type for `chtype` (otherwise a 32-bit type is used).
# This should be set automagically (when needed) by build.rs
wide_chtype = []
# Uses legacy values for mouse-related constants.
mouse_v1 = []
extended_colors = ["wide"]

#Internal features used in 'build.rs' only:
test_build_rs_of_ncurses_rs = []
dummy_feature_to_detect_that_--all-features_arg_was_used= []

[lib]
name = "ncurses"
Loading

0 comments on commit 9304877

Please sign in to comment.