1 | [package] |
2 | name = "indoc" |
3 | version = "2.0.4" |
4 | authors = ["David Tolnay <dtolnay@gmail.com>" ] |
5 | categories = ["rust-patterns" , "text-processing" , "no-std" , "no-std::no-alloc" ] |
6 | description = "Indented document literals" |
7 | documentation = "https://docs.rs/indoc" |
8 | edition = "2021" |
9 | keywords = ["heredoc" , "nowdoc" , "multiline" , "string" , "literal" ] |
10 | license = "MIT OR Apache-2.0" |
11 | repository = "https://github.com/dtolnay/indoc" |
12 | rust-version = "1.56" |
13 | |
14 | [lib] |
15 | proc-macro = true |
16 | doc-scrape-examples = false |
17 | |
18 | [dev-dependencies] |
19 | rustversion = "1.0" |
20 | trybuild = { version = "1.0.49" , features = ["diff" ] } |
21 | unindent = { version = "0.2.3" , path = "unindent" } |
22 | |
23 | [workspace] |
24 | members = ["unindent" ] |
25 | |
26 | [package.metadata.docs.rs] |
27 | targets = ["x86_64-unknown-linux-gnu" ] |
28 | rustdoc-args = ["--generate-link-to-definition" ] |
29 | |