1[package]
2name = "indoc"
3version = "2.0.6"
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
16
17[dev-dependencies]
18rustversion = "1.0"
19trybuild = { version = "1.0.49", features = ["diff"] }
20unindent = { version = "0.2.3", path = "unindent" }
21
22[workspace]
23members = ["unindent"]
24
25[package.metadata.docs.rs]
26targets = ["x86_64-unknown-linux-gnu"]
27rustdoc-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