-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
34 lines (29 loc) · 916 Bytes
/
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
[package]
name = "textwrap-macros"
version = "0.3.0"
authors = ["Martin Larralde <martin.larralde@ens-paris-saclay.fr>"]
edition = "2018"
license = "MIT"
description = "Simple procedural macros to use textwrap utilities at compile time."
repository = "https://github.com/althonos/textwrap-macros"
homepage = "https://github.com/althonos/textwrap-macros"
readme = "README.md"
keywords = ["text", "formatting", "wrap", "typesetting", "macro"]
categories = ["text-processing", "development-tools::build-utils"]
[workspace]
members = ["impl"]
[features]
default = ["std"]
std = []
[badges.codecov]
repository = "althonos/textwrap-macros"
service = "github"
[badges.is-it-maintained-issue-resolution]
repository = "althonos/textwrap-macros"
[badges.maintenance]
status = "actively-developed"
[dependencies.proc-macro-hack]
version = "0.5"
[dependencies.textwrap-macros-impl]
version = "0.3.0"
path = "./impl"