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