File: Cargo.toml.orig

package info (click to toggle)
rust-cursive-macros 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 148 kB
  • sloc: makefile: 4
file content (28 lines) | stat: -rw-r--r-- 816 bytes parent folder | download | duplicates (2)
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
[package]
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
categories = ["command-line-interface", "gui"]
description = "Proc-macros for the cursive TUI library."
documentation = "https://docs.rs/cursive-macros"
edition = "2021"
keywords = ["ncurses", "TUI", "UI"]
license = "MIT"
name = "cursive-macros"
readme = "Readme.md"
repository = "https://github.com/gyscos/cursive"
version = "0.1.0"
include = ["src/**/*"]

[lib]
proc-macro = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
find-crate = { optional = true, version = "0.6.3" }
proc-macro2 = "1.0.47"
quote = {version = "1.0.21", optional = true }
syn = { version = "2", features = ["full", "extra-traits"], optional = true }


[features]
builder = ["find-crate", "syn", "quote"]