1 | [package] |
2 | name = "indoc" |
3 | version = "2.0.6" |
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 | |
17 | [dev-dependencies] |
18 | rustversion = "1.0" |
19 | trybuild = { version = "1.0.49" , features = ["diff" ] } |
20 | unindent = { version = "0.2.3" , path = "unindent" } |
21 | |
22 | [workspace] |
23 | members = ["unindent" ] |
24 | |
25 | [package.metadata.docs.rs] |
26 | targets = ["x86_64-unknown-linux-gnu" ] |
27 | rustdoc-args = [ |
28 | "--generate-link-to-definition" , |
29 | "--extern-html-root-url=core=https://doc.rust-lang.org" , |
30 | "--extern-html-root-url=alloc=https://doc.rust-lang.org" , |
31 | "--extern-html-root-url=std=https://doc.rust-lang.org" , |
32 | "--extern-html-root-url=proc_macro=https://doc.rust-lang.org" , |
33 | ] |
34 | |